diff options
Diffstat (limited to 'cpp/src/qpid/client/ClientChannel.h')
-rw-r--r-- | cpp/src/qpid/client/ClientChannel.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cpp/src/qpid/client/ClientChannel.h b/cpp/src/qpid/client/ClientChannel.h index 7ba4b0a246..9e5e3a2e70 100644 --- a/cpp/src/qpid/client/ClientChannel.h +++ b/cpp/src/qpid/client/ClientChannel.h @@ -93,6 +93,8 @@ class Channel : private sys::Runnable void closeInternal(); void join(); + void dispatch(framing::FrameSet& msg, const std::string& destination); + // FIXME aconway 2007-02-23: Get rid of friendships. friend class Connection; @@ -301,7 +303,7 @@ class Channel : private sys::Runnable * receive this message on publication, the message will be * returned (see setReturnedMessageHandler()). */ - void publish(const Message& msg, const Exchange& exchange, + void publish(Message& msg, const Exchange& exchange, const std::string& routingKey, bool mandatory = false, bool immediate = false); |