diff options
author | Gordon Sim <gsim@apache.org> | 2007-10-15 09:52:16 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2007-10-15 09:52:16 +0000 |
commit | 143e0b952e77e5a2d487ffd7cad0fc82bdeeb45c (patch) | |
tree | e1f4dab4ff80c582fad678ca08020f1cc657651d /cpp/src/qpid/broker/SemanticState.h | |
parent | d1fe45808c053e19b6112ee2b823710167f8e821 (diff) | |
download | qpid-python-143e0b952e77e5a2d487ffd7cad0fc82bdeeb45c.tar.gz |
Remove default queue concept which is no longer applicable in 0-10.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@584719 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/broker/SemanticState.h')
-rw-r--r-- | cpp/src/qpid/broker/SemanticState.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/cpp/src/qpid/broker/SemanticState.h b/cpp/src/qpid/broker/SemanticState.h index ff1c8192f7..65e67283cc 100644 --- a/cpp/src/qpid/broker/SemanticState.h +++ b/cpp/src/qpid/broker/SemanticState.h @@ -137,15 +137,12 @@ class SemanticState : public framing::FrameHandler::Chains, /** * Get named queue, never returns 0. - * @return: named queue or default queue for session if name="" + * @return: named queue * @exception: ChannelException if no queue of that name is found. * @exception: ConnectionException if name="" and session has no default. */ Queue::shared_ptr getQueue(const std::string& name) const; - - void setDefaultQueue(Queue::shared_ptr queue){ defaultQueue = queue; } - Queue::shared_ptr getDefaultQueue() const { return defaultQueue; } uint32_t setPrefetchSize(uint32_t size){ return prefetchSize = size; } uint16_t setPrefetchCount(uint16_t n){ return prefetchCount = n; } |