diff options
| author | Gordon Sim <gsim@apache.org> | 2007-06-06 16:39:03 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2007-06-06 16:39:03 +0000 |
| commit | 70a3cdf33b3e38ee26ee2840a55f83ebd26589b4 (patch) | |
| tree | 07c3dab5cb7d97158737c36efa1caa8d9254c266 /cpp/src/qpid/broker/BrokerAdapter.cpp | |
| parent | 480e99cfc6071f15bc7135895cf2b60d0dd9c981 (diff) | |
| download | qpid-python-70a3cdf33b3e38ee26ee2840a55f83ebd26589b4.tar.gz | |
Merged in channel.flow implementation and interoperability tests.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@544879 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/broker/BrokerAdapter.cpp')
| -rw-r--r-- | cpp/src/qpid/broker/BrokerAdapter.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/cpp/src/qpid/broker/BrokerAdapter.cpp b/cpp/src/qpid/broker/BrokerAdapter.cpp index 3c742b8d2d..592995f10f 100644 --- a/cpp/src/qpid/broker/BrokerAdapter.cpp +++ b/cpp/src/qpid/broker/BrokerAdapter.cpp @@ -100,7 +100,11 @@ void BrokerAdapter::ChannelHandlerImpl::open( std::string()/* ID */, context.getRequestId()); } -void BrokerAdapter::ChannelHandlerImpl::flow(const MethodContext&, bool /*active*/){} +void BrokerAdapter::ChannelHandlerImpl::flow(const MethodContext& context, bool active){ + channel.flow(active); + client.flowOk(active, context.getRequestId()); +} + void BrokerAdapter::ChannelHandlerImpl::flowOk(const MethodContext&, bool /*active*/){} void BrokerAdapter::ChannelHandlerImpl::close( |
