From 8189a1f1f3d27d9ad7e0de50ed9e924e63d74aec Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Wed, 14 Feb 2007 15:02:10 +0000 Subject: * cpp/lib/common/sys/ProducerConsumer.h: General-purpose producer-consumer synchronization. Anywhere we have producer/consumer threads in qpid we should re-use this sync object rather than re-inventing the synchronization each time. * cpp/lib/common/sys/AtomicCount.h: Separated ScopedIncrement/ScopedDecrement into ScopedIncrement.h * cpp/tests/InProcessBroker.h: Added class InProcessBrokerClient, a self contained in-process client + broker convenience for tests. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/qpid.0-9@507560 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/lib/client/ClientChannel.cpp | 6 ------ 1 file changed, 6 deletions(-) (limited to 'cpp/lib/client/ClientChannel.cpp') diff --git a/cpp/lib/client/ClientChannel.cpp b/cpp/lib/client/ClientChannel.cpp index 52910f5161..613469c4ba 100644 --- a/cpp/lib/client/ClientChannel.cpp +++ b/cpp/lib/client/ClientChannel.cpp @@ -54,11 +54,6 @@ AMQP_ServerProxy& Channel::brokerProxy() { return *proxy; } -AMQMethodBody::shared_ptr Channel::brokerResponse() { - // FIXME aconway 2007-02-08: implement responses. - return AMQMethodBody::shared_ptr(); -} - void Channel::open(ChannelId id, Connection& con) { if (isOpen()) @@ -482,7 +477,6 @@ void Channel::close( u_int16_t code, const std::string& text, ClassId classId, MethodId methodId) { - // FIXME aconway 2007-01-26: Locking? if (getId() != 0 && isOpen()) { try { sendAndReceive( -- cgit v1.2.1