diff options
author | Gordon Sim <gsim@apache.org> | 2013-04-29 18:04:17 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2013-04-29 18:04:17 +0000 |
commit | a29b83f08ed76102923a9304dc8c89c68faca97c (patch) | |
tree | 05cadd4783165344d510c0c6d6f69f933b36455f /cpp/src/qpid/broker/QueueSettings.h | |
parent | fe17c41b0b6b3e31ad575dfd2ff9a4b007650dbe (diff) | |
download | qpid-python-a29b83f08ed76102923a9304dc8c89c68faca97c.tar.gz |
QPID-4339: simple paged queue implementation
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1477236 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/broker/QueueSettings.h')
-rw-r--r-- | cpp/src/qpid/broker/QueueSettings.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cpp/src/qpid/broker/QueueSettings.h b/cpp/src/qpid/broker/QueueSettings.h index ec012c578f..3f42b53f23 100644 --- a/cpp/src/qpid/broker/QueueSettings.h +++ b/cpp/src/qpid/broker/QueueSettings.h @@ -59,6 +59,11 @@ struct QueueSettings QueueDepth maxDepth; bool dropMessagesAtLimit;//aka ring queue policy + //PagedQueue: + bool paging; + uint maxPages; + uint pageFactor; + bool noLocal; bool isBrowseOnly; std::string traceId; |