diff options
author | Alan Conway <aconway@apache.org> | 2007-01-19 21:33:27 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2007-01-19 21:33:27 +0000 |
commit | e861284318186f8d9cd64a7ddcc28b8d20b98721 (patch) | |
tree | 6dac612d65297dc5f104350884fc01385c69ecda /cpp/lib/client/ClientChannel.cpp | |
parent | 226be67c91b25a5ba8efdd9ba88566033ec97718 (diff) | |
download | qpid-python-e861284318186f8d9cd64a7ddcc28b8d20b98721.tar.gz |
Last big refactoring for 0-9 framing. Still need additional tests &
debugging but the overall structure is all in place.
* configure.ac: Added -Wno_virtual_overload warning
* ChannelTest.cpp, MessageBuilderTest.cpp: Fixed virtual overload warnings.
* ChannelAdapter.cpp: Common base for client/broker adapters.
Creates invocation context, handles request/resposne IDs.
* CppGenerator.java:
- Proxies send methods using MethodContext.
* Various .h files: removed unnecessary #includes, added to requred .cpp files.
* ConnectionContext: renamed from SessionContext.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/qpid.0-9@497963 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/lib/client/ClientChannel.cpp')
-rw-r--r-- | cpp/lib/client/ClientChannel.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/cpp/lib/client/ClientChannel.cpp b/cpp/lib/client/ClientChannel.cpp index af26990d8a..d9edb2f390 100644 --- a/cpp/lib/client/ClientChannel.cpp +++ b/cpp/lib/client/ClientChannel.cpp @@ -256,6 +256,16 @@ void Channel::rollback(){ sendAndReceive(frame, method_bodies.tx_rollback_ok); } +void Channel::handleRequest(AMQRequestBody::shared_ptr body) { + // FIXME aconway 2007-01-19: request/response handling. + handleMethod(body); +} + +void Channel::handleResponse(AMQResponseBody::shared_ptr body) { + // FIXME aconway 2007-01-19: request/response handling. + handleMethod(body); +} + void Channel::handleMethod(AMQMethodBody::shared_ptr body){ //channel.flow, channel.close, basic.deliver, basic.return or a response to a synchronous request if(responses.isWaiting()){ |