summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/Makefile.am
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2011-02-10 10:12:41 +0000
committerGordon Sim <gsim@apache.org>2011-02-10 10:12:41 +0000
commit8b8d70e010a2999ad5dd1590d41eb35d8091296a (patch)
treeae91e61fba3777fe9af4fb447d6b91387cbbc8db /qpid/cpp/src/Makefile.am
parent071d6276042c05be0f24b8e8bce205ae49d0480a (diff)
downloadqpid-python-8b8d70e010a2999ad5dd1590d41eb35d8091296a.tar.gz
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@1069322 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/Makefile.am')
-rw-r--r--qpid/cpp/src/Makefile.am11
1 files changed, 11 insertions, 0 deletions
diff --git a/qpid/cpp/src/Makefile.am b/qpid/cpp/src/Makefile.am
index cd30526675..c50fa5a6da 100644
--- a/qpid/cpp/src/Makefile.am
+++ b/qpid/cpp/src/Makefile.am
@@ -548,6 +548,8 @@ libqpidbroker_la_SOURCES = \
qpid/broker/ExchangeRegistry.h \
qpid/broker/ExpiryPolicy.cpp \
qpid/broker/ExpiryPolicy.h \
+ qpid/broker/Fairshare.h \
+ qpid/broker/Fairshare.cpp \
qpid/broker/FanOutExchange.cpp \
qpid/broker/FanOutExchange.h \
qpid/broker/FedOps.h \
@@ -556,6 +558,8 @@ libqpidbroker_la_SOURCES = \
qpid/broker/HeadersExchange.h \
qpid/broker/IncompleteMessageList.cpp \
qpid/broker/IncompleteMessageList.h \
+ qpid/broker/LegacyLVQ.h \
+ qpid/broker/LegacyLVQ.cpp \
qpid/broker/Link.cpp \
qpid/broker/Link.h \
qpid/broker/LinkRegistry.cpp \
@@ -566,9 +570,16 @@ libqpidbroker_la_SOURCES = \
qpid/broker/MessageAdapter.h \
qpid/broker/MessageBuilder.cpp \
qpid/broker/MessageBuilder.h \
+ qpid/broker/MessageDeque.h \
+ qpid/broker/MessageDeque.cpp \
+ qpid/broker/MessageMap.h \
+ qpid/broker/MessageMap.cpp \
+ qpid/broker/Messages.h \
qpid/broker/MessageStore.h \
qpid/broker/MessageStoreModule.cpp \
qpid/broker/MessageStoreModule.h \
+ qpid/broker/PriorityQueue.h \
+ qpid/broker/PriorityQueue.cpp \
qpid/broker/NameGenerator.cpp \
qpid/broker/NameGenerator.h \
qpid/broker/NullMessageStore.cpp \