diff options
| author | Gordon Sim <gsim@apache.org> | 2009-01-20 13:30:08 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2009-01-20 13:30:08 +0000 |
| commit | afefc741a9ad4c6299a47805a45a1c81a048e0a2 (patch) | |
| tree | 70120255a090b5def48b4f5c72d2c1004841772d /cpp/src/qpid/replication/constants.h | |
| parent | 1d5e6b196da4ba618ebc91054ee77e6c3c005333 (diff) | |
| download | qpid-python-afefc741a9ad4c6299a47805a45a1c81a048e0a2.tar.gz | |
QPID-1567: added 'exactly-once' guarantee to asynchronous replication of queue state
* altered replication protocol to detect and eliminate duplicates
* added support for acknowledged transfer over inter-broker bridges
* added option to qpid-route to control this
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@736018 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/replication/constants.h')
| -rw-r--r-- | cpp/src/qpid/replication/constants.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/cpp/src/qpid/replication/constants.h b/cpp/src/qpid/replication/constants.h index b0cef7570c..fb7085c570 100644 --- a/cpp/src/qpid/replication/constants.h +++ b/cpp/src/qpid/replication/constants.h @@ -22,10 +22,12 @@ namespace qpid { namespace replication { namespace constants { -const std::string REPLICATION_EVENT_TYPE("qpid.replication_event_type"); -const std::string ENQUEUE("enqueue"); -const std::string DEQUEUE("dequeue"); -const std::string REPLICATION_TARGET_QUEUE("qpid.replication_target_queue"); -const std::string DEQUEUED_MESSAGE_POSITION("qpid.dequeued_message_position"); +const std::string REPLICATION_EVENT_TYPE("qpid.replication.type"); +const std::string REPLICATION_EVENT_SEQNO("qpid.replication.seqno"); +const std::string REPLICATION_TARGET_QUEUE("qpid.replication.target_queue"); +const std::string DEQUEUED_MESSAGE_POSITION("qpid.replication.message"); + +const int ENQUEUE(1); +const int DEQUEUE(2); }}} |
