diff options
author | Jonathan Robie <jonathan@apache.org> | 2010-07-28 17:55:56 +0000 |
---|---|---|
committer | Jonathan Robie <jonathan@apache.org> | 2010-07-28 17:55:56 +0000 |
commit | fe20bf83d9e4af8fa9fa39c4acb79ba74ff09a29 (patch) | |
tree | df84b55a3341d176bdb3bef50daf7aeda14e0448 | |
parent | 0237f249ae8b34f766ce863e428b5ca6351adc12 (diff) | |
download | qpid-python-fe20bf83d9e4af8fa9fa39c4acb79ba74ff09a29.tar.gz |
Improved doxygen comments for class description.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@980140 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | cpp/src/qpid/broker/SessionAdapter.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/cpp/src/qpid/broker/SessionAdapter.h b/cpp/src/qpid/broker/SessionAdapter.h index b69f258037..3107801740 100644 --- a/cpp/src/qpid/broker/SessionAdapter.h +++ b/cpp/src/qpid/broker/SessionAdapter.h @@ -42,14 +42,15 @@ class Broker; class Queue; /** - * Per-channel protocol adapter. + * SessionAdapter translates protocol-specific AMQP commands for one + * specific version of AMQP into calls on the core broker objects. It + * is a container for a collection of adapters. * - * A container for a collection of AMQP-class adapters that translate - * AMQP method bodies into calls on the core Broker objects. Each - * adapter class also provides a client proxy to send methods to the - * peer. + * Each adapter class provides a client proxy to send methods to the + * peer broker or client. * */ + class SessionAdapter : public HandlerImpl, public framing::AMQP_ServerOperations { public: |