diff options
Diffstat (limited to 'cpp/src/qpid/broker/TopicExchange.h')
-rw-r--r-- | cpp/src/qpid/broker/TopicExchange.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/cpp/src/qpid/broker/TopicExchange.h b/cpp/src/qpid/broker/TopicExchange.h index c50ecf1830..329c2f408f 100644 --- a/cpp/src/qpid/broker/TopicExchange.h +++ b/cpp/src/qpid/broker/TopicExchange.h @@ -96,9 +96,13 @@ public: QPID_BROKER_EXTERN virtual bool bind(Queue::shared_ptr queue, const std::string& routingKey, - const qpid::framing::FieldTable* args); + const qpid::framing::FieldTable* args, + AsyncStore* const store); - virtual bool unbind(Queue::shared_ptr queue, const std::string& routingKey, const qpid::framing::FieldTable* args); + virtual bool unbind(Queue::shared_ptr queue, + const std::string& routingKey, + const qpid::framing::FieldTable* args, + AsyncStore* const store); QPID_BROKER_EXTERN virtual void route(Deliverable& msg); |