diff options
author | Ted Ross <tross@apache.org> | 2010-03-02 03:25:56 +0000 |
---|---|---|
committer | Ted Ross <tross@apache.org> | 2010-03-02 03:25:56 +0000 |
commit | 26883f5dcdd17e31fad56d89bda169eb1e5a281f (patch) | |
tree | 9a6706120771ed48990db8b416d35f949d060a34 /qpid/cpp/src/qmf/Protocol.cpp | |
parent | 4133cb8e05f8ea6bac29e1e5cf81afaa3d3a591a (diff) | |
download | qpid-python-qmf-devel0.7.tar.gz |
Update branch with new Agent engine implementation:qmf-devel0.7
- Data hooks to allow batched and partial updates from internal storage.
- Capability for immediate updates for deletion and changing of discrete values.
- Implementation of query and event-raise.
git-svn-id: https://svn.apache.org/repos/asf/qpid/branches/qmf-devel0.7@917854 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/qmf/Protocol.cpp')
-rw-r--r-- | qpid/cpp/src/qmf/Protocol.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/qpid/cpp/src/qmf/Protocol.cpp b/qpid/cpp/src/qmf/Protocol.cpp index 5ab009d6bf..774ca709af 100644 --- a/qpid/cpp/src/qmf/Protocol.cpp +++ b/qpid/cpp/src/qmf/Protocol.cpp @@ -47,6 +47,8 @@ const string Protocol::AMQP_CONTENT_MAP("amqp/map"); const string Protocol::AMQP_CONTENT_LIST("amqp/list"); const string Protocol::APP_OPCODE("qmf.opcode"); +const string Protocol::APP_PARTIAL("partial"); +const string Protocol::APP_CONTENT("qmf.content"); const string Protocol::OP_EXCEPTION("_exception"); const string Protocol::OP_AGENT_LOCATE_REQUEST("_agent_locate_request"); @@ -62,6 +64,7 @@ const string Protocol::OP_DATA_INDICATION("_data_indication"); const string Protocol::OP_METHOD_REQUEST("_method_request"); const string Protocol::OP_METHOD_RESPONSE("_method_response"); +const string Protocol::CONTENT_NONE(""); const string Protocol::CONTENT_PACKAGE("_schema_package"); const string Protocol::CONTENT_SCHEMA_ID("_schema_id"); const string Protocol::CONTENT_SCHEMA_CLASS("_schema_class"); |