diff options
author | Gordon Sim <gsim@apache.org> | 2007-09-13 17:29:16 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2007-09-13 17:29:16 +0000 |
commit | 0a1b3430450f274aee273a9f792a2d43f771b85f (patch) | |
tree | 71be3bc1a920a568c0680f8e8a5e802c1c3bee8d /cpp/src/qpid/client/ClientChannel.h | |
parent | e00a1cfa3881e3bb8aadfecdf502f17903e319b1 (diff) | |
download | qpid-python-0a1b3430450f274aee273a9f792a2d43f771b85f.tar.gz |
Use frameset begin/end flags for determining frameset boundaries.
Set frameset & segment begin/end flags for content bearing methods (i.e. messages).
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@575377 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/client/ClientChannel.h')
-rw-r--r-- | cpp/src/qpid/client/ClientChannel.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cpp/src/qpid/client/ClientChannel.h b/cpp/src/qpid/client/ClientChannel.h index b33af65d21..527f5d418f 100644 --- a/cpp/src/qpid/client/ClientChannel.h +++ b/cpp/src/qpid/client/ClientChannel.h @@ -63,8 +63,7 @@ class Channel : private sys::Runnable struct Consumer{ MessageListener* listener; AckMode ackMode; - int count; - u_int64_t lastDeliveryTag; + uint32_t count; }; typedef std::map<std::string, Consumer> ConsumerMap; @@ -75,7 +74,7 @@ class Channel : private sys::Runnable const bool transactional; framing::ProtocolVersion version; - sys::Mutex stopLock; + mutable sys::Mutex stopLock; bool running; ConsumerMap consumers; |