summaryrefslogtreecommitdiff
path: root/cpp/lib/client/ClientChannel.h
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2007-02-17 03:54:15 +0000
committerAlan Conway <aconway@apache.org>2007-02-17 03:54:15 +0000
commit56e08f275a1b25aae1be0a0e8f7adaede3f6c184 (patch)
tree91efc0d01b73cdb2c3abb8a39d93f82258c3505c /cpp/lib/client/ClientChannel.h
parentf972bfa6c7c9a1b3d5f5fe4753dce7358b6b0215 (diff)
downloadqpid-python-56e08f275a1b25aae1be0a0e8f7adaede3f6c184.tar.gz
ClientChannel: removed server proxy, not used.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/qpid.0-9@508706 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/lib/client/ClientChannel.h')
-rw-r--r--cpp/lib/client/ClientChannel.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/cpp/lib/client/ClientChannel.h b/cpp/lib/client/ClientChannel.h
index d6ec1d9772..ed67fd8f6b 100644
--- a/cpp/lib/client/ClientChannel.h
+++ b/cpp/lib/client/ClientChannel.h
@@ -43,7 +43,6 @@ namespace qpid {
namespace framing {
class ChannelCloseBody;
-class AMQP_ServerProxy;
class AMQMethodBody;
}
@@ -109,7 +108,6 @@ class Channel : public framing::ChannelAdapter,
u_int16_t prefetch;
const bool transactional;
framing::ProtocolVersion version;
- boost::scoped_ptr<framing::AMQP_ServerProxy> proxy;
void enqueue();
void retrieve(Message& msg);
@@ -366,17 +364,6 @@ class Channel : public framing::ChannelAdapter,
void setReturnedMessageHandler(ReturnedMessageHandler* handler);
bool isOpen() const;
-
- /**
- * Returns a proxy for the "raw" AMQP broker protocol. Only for use by
- * protocol experts.
- */
- framing::AMQP_ServerProxy& brokerProxy();
-
- /**
- * Wait for the next method from the broker.
- */
- framing::AMQMethodBody::shared_ptr receive();
};
}}