From 731d6c4b13ed7ae5941a4b0f969be357f3d7e831 Mon Sep 17 00:00:00 2001 From: Gordon Sim Date: Thu, 10 Feb 2011 10:12:41 +0000 Subject: QPID-529: Priority queue implementation QPID-2104: LVQ enhancement These both required some refactoring of the Queue class to allow cleaner implementation of different types of behaviour. The in-memory storage of messages is now abstracted out behind an interface specified by qpid::broker::Messages which qpid::broker::Queue uses. Different implementations of that are available for the standard FIFO queue, priority queues and LVQ (I have also separated out the 'legacy' implementation of LVQ from the new version driven by QPID-2104). git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1069322 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/src/CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'cpp/src/CMakeLists.txt') diff --git a/cpp/src/CMakeLists.txt b/cpp/src/CMakeLists.txt index 4ecbc53c6b..a709056899 100644 --- a/cpp/src/CMakeLists.txt +++ b/cpp/src/CMakeLists.txt @@ -956,6 +956,11 @@ set (qpidbroker_SOURCES qpid/broker/Broker.cpp qpid/broker/Exchange.cpp qpid/broker/ExpiryPolicy.cpp + qpid/broker/Fairshare.cpp + qpid/broker/LegacyLVQ.cpp + qpid/broker/MessageDeque.cpp + qpid/broker/MessageMap.cpp + qpid/broker/PriorityQueue.cpp qpid/broker/Queue.cpp qpid/broker/QueueCleaner.cpp qpid/broker/QueueListeners.cpp -- cgit v1.2.1