diff options
Diffstat (limited to 'cpp/src/qpid/broker/SessionState.h')
-rw-r--r-- | cpp/src/qpid/broker/SessionState.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/cpp/src/qpid/broker/SessionState.h b/cpp/src/qpid/broker/SessionState.h index 250d520145..97807425dd 100644 --- a/cpp/src/qpid/broker/SessionState.h +++ b/cpp/src/qpid/broker/SessionState.h @@ -101,11 +101,8 @@ class SessionState : public qpid::SessionState, void readyToSend(); // Used by cluster to create replica sessions. - template <class F> void eachConsumer(F f) { semanticState.eachConsumer(f); } - template <class F> void eachUnacked(F f) { semanticState.eachUnacked(f); } - SemanticState::ConsumerImpl& getConsumer(const string& dest) { return semanticState.find(dest); } + SemanticState& getSemanticState() { return semanticState; } boost::intrusive_ptr<Message> getMessageInProgress() { return msgBuilder.getMessage(); } - void record(const DeliveryRecord& delivery) { semanticState.record(delivery); } private: |