summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/broker/SessionState.h
diff options
context:
space:
mode:
authorAndrew Stitcher <astitcher@apache.org>2009-07-30 14:06:49 +0000
committerAndrew Stitcher <astitcher@apache.org>2009-07-30 14:06:49 +0000
commit9c095c4cd694287151cc1fabcc274fd435944dee (patch)
treeaea55b408f4461f86cc2087629e71c21247ab392 /cpp/src/qpid/broker/SessionState.h
parent20dfc1f76b845a7d6826f9a27923827fd60ea0e9 (diff)
downloadqpid-python-9c095c4cd694287151cc1fabcc274fd435944dee.tar.gz
Change all broker users of broker::Timer to use sys::Timer
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@799273 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/broker/SessionState.h')
-rw-r--r--cpp/src/qpid/broker/SessionState.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/cpp/src/qpid/broker/SessionState.h b/cpp/src/qpid/broker/SessionState.h
index d66c449b06..3831be6cb5 100644
--- a/cpp/src/qpid/broker/SessionState.h
+++ b/cpp/src/qpid/broker/SessionState.h
@@ -48,6 +48,10 @@ namespace framing {
class AMQP_ClientProxy;
}
+namespace sys {
+struct TimerTask;
+}
+
namespace broker {
class Broker;
@@ -56,7 +60,6 @@ class Message;
class SessionHandler;
class SessionManager;
class RateFlowcontrol;
-struct TimerTask;
/**
* Broker-side session state includes session's handler chains, which
@@ -153,7 +156,7 @@ class SessionState : public qpid::SessionState,
// State used for producer flow control (rate limited)
qpid::sys::Mutex rateLock;
boost::scoped_ptr<RateFlowcontrol> rateFlowcontrol;
- boost::intrusive_ptr<TimerTask> flowControlTimer;
+ boost::intrusive_ptr<sys::TimerTask> flowControlTimer;
friend class SessionManager;
};