diff options
| author | Alan Conway <aconway@apache.org> | 2007-02-14 15:02:10 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2007-02-14 15:02:10 +0000 |
| commit | 8189a1f1f3d27d9ad7e0de50ed9e924e63d74aec (patch) | |
| tree | f43ed248e99d67639f4330e604a0ed718f736d22 /cpp/lib/client/ClientChannel.cpp | |
| parent | 20a5f81e8bbf8d4429d55fffb47278e7ade81c17 (diff) | |
| download | qpid-python-8189a1f1f3d27d9ad7e0de50ed9e924e63d74aec.tar.gz | |
* 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
Diffstat (limited to 'cpp/lib/client/ClientChannel.cpp')
| -rw-r--r-- | cpp/lib/client/ClientChannel.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
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<ChannelCloseOkBody>( |
