summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/broker/Connection.h
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2007-07-03 09:04:00 +0000
committerGordon Sim <gsim@apache.org>2007-07-03 09:04:00 +0000
commite7f82f3d5b39c77ee913ee4cd6b4bf1bdc8b13bc (patch)
tree287e8ce31be4594915c577045025b466d969d17b /cpp/src/qpid/broker/Connection.h
parent953eb74e69055777252ec05e1c277ec32fed82d0 (diff)
downloadqpid-python-e7f82f3d5b39c77ee913ee4cd6b4bf1bdc8b13bc.tar.gz
Autodeletable shared queues are now deleted as soon as the consumer count drops to zero (i.e. there is no timeout).
This closes QPID-533. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@552751 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/broker/Connection.h')
-rw-r--r--cpp/src/qpid/broker/Connection.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/cpp/src/qpid/broker/Connection.h b/cpp/src/qpid/broker/Connection.h
index fcfc1d3334..259a74f808 100644
--- a/cpp/src/qpid/broker/Connection.h
+++ b/cpp/src/qpid/broker/Connection.h
@@ -62,7 +62,6 @@ class Connection : public sys::ConnectionInputHandler,
uint32_t getFrameMax() const { return framemax; }
uint16_t getHeartbeat() const { return heartbeat; }
- uint32_t getTimeout() const { return timeout; }
uint64_t getStagingThreshold() const { return stagingThreshold; }
void setFrameMax(uint32_t fm) { framemax = fm; }
@@ -98,7 +97,6 @@ class Connection : public sys::ConnectionInputHandler,
uint32_t framemax;
uint16_t heartbeat;
framing::AMQP_ClientProxy::Connection* client;
- const uint32_t timeout; //timeout for auto-deleted queues (in ms)
const uint64_t stagingThreshold;
};