diff options
author | Carl C. Trieloff <cctrieloff@apache.org> | 2008-10-08 18:35:46 +0000 |
---|---|---|
committer | Carl C. Trieloff <cctrieloff@apache.org> | 2008-10-08 18:35:46 +0000 |
commit | 8362a8ce23f94b51ded1c41133069b69b31cf5dd (patch) | |
tree | 911be91f3d16b1312487059eab640619b4ab25c3 /cpp/src/qpid/client/QueueOptions.h | |
parent | 6d88227a3bf38b3d09381ca5efa522ced44c7c79 (diff) | |
download | qpid-python-8362a8ce23f94b51ded1c41133069b69b31cf5dd.tar.gz |
QPID-1306
- added lvq support
- added lvq tests
- added safety test for lvq
- updated QueueOptions for lvq
- some refactor to queue, to have signel pop loction
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@702958 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/client/QueueOptions.h')
-rw-r--r-- | cpp/src/qpid/client/QueueOptions.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/cpp/src/qpid/client/QueueOptions.h b/cpp/src/qpid/client/QueueOptions.h index 21333794ac..37cb8616e3 100644 --- a/cpp/src/qpid/client/QueueOptions.h +++ b/cpp/src/qpid/client/QueueOptions.h @@ -86,6 +86,11 @@ class QueueOptions: public framing::FieldTable void clearPersistLastNode(); /** + * get the key used match LVQ in args for message transfer + */ + void getLVQKey(std::string& key); + + /** * Use default odering policy */ void clearOrdering(); @@ -100,7 +105,7 @@ class QueueOptions: public framing::FieldTable static const std::string strLastValueQueue; static const std::string strOptimisticConsume; static const std::string strPersistLastNode; - private: + static const std::string strLVQMatchProperty; |