summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/client/Connection.h
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2008-05-23 21:23:07 +0000
committerAlan Conway <aconway@apache.org>2008-05-23 21:23:07 +0000
commit3b4d08876f63637cd9ffb28988eb2ec9a9a7f30e (patch)
tree11206920074aef9a5b9d794b6ed550f72d3a198d /cpp/src/qpid/client/Connection.h
parent52833097fb1737316c76822bf7e6dda31dec3433 (diff)
downloadqpid-python-3b4d08876f63637cd9ffb28988eb2ec9a9a7f30e.tar.gz
Delete obsolete Channel class.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@659663 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/client/Connection.h')
-rw-r--r--cpp/src/qpid/client/Connection.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/cpp/src/qpid/client/Connection.h b/cpp/src/qpid/client/Connection.h
index 417739fd1d..0c01c77509 100644
--- a/cpp/src/qpid/client/Connection.h
+++ b/cpp/src/qpid/client/Connection.h
@@ -23,7 +23,6 @@
*/
#include <map>
#include <string>
-#include "Channel.h"
#include "ConnectionImpl.h"
#include "qpid/client/Session.h"
#include "qpid/framing/AMQP_HighestVersion.h"
@@ -108,18 +107,6 @@ class Connection
void close();
/**
- * Associate a Channel with this connection and open it for use.
- *
- * In AMQP, channels are like multiplexed 'sessions' of work over
- * a connection. Almost all the interaction with AMQP is done over
- * a channel.
- *
- * @param connection the connection object to be associated with
- * the channel. Call Channel::close() to close the channel.
- */
- void openChannel(Channel&);
-
- /**
* Create a new session on this connection. Sessions allow
* multiple streams of work to be multiplexed over the same
* connection.