summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
authorJonathan Robie <jonathan@apache.org>2010-07-28 15:31:27 +0000
committerJonathan Robie <jonathan@apache.org>2010-07-28 15:31:27 +0000
commit07a60b00ca2e5935b79de5d0be10556c2d3721d4 (patch)
treec864674af09c93987d685708c30dcccf588051d3 /cpp
parentcdf12cd1cd2d2cf112019d0d21aed07d8cc83f7c (diff)
downloadqpid-python-07a60b00ca2e5935b79de5d0be10556c2d3721d4.tar.gz
Improved doxygen documentation of SessionState.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@980096 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp')
-rw-r--r--cpp/src/qpid/broker/SemanticState.h13
1 files changed, 11 insertions, 2 deletions
diff --git a/cpp/src/qpid/broker/SemanticState.h b/cpp/src/qpid/broker/SemanticState.h
index 2b314920e6..4a2adde415 100644
--- a/cpp/src/qpid/broker/SemanticState.h
+++ b/cpp/src/qpid/broker/SemanticState.h
@@ -53,8 +53,17 @@ namespace broker {
class SessionContext;
/**
- * SemanticState holds the L3 and L4 state of an open session, whether
- * attached to a channel or suspended.
+ *
+ * SemanticState implements the behavior of a Session, especially the
+ * state of consumers subscribed to queues. The code for ConsumerImpl
+ * is also in SemanticState.cpp
+ *
+ * SemanticState holds the AMQP Execution and Model state of an open
+ * session, whether attached to a channel or suspended.
+ *
+ * Message delivery is driven by ConsumerImpl::doOutput(), which is
+ * called when a client's socket is ready to write data.
+ *
*/
class SemanticState : private boost::noncopyable {
public: