summaryrefslogtreecommitdiff
path: root/cpp/src/tests/storePerftools/asyncPerf/MessageAsyncContext.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/tests/storePerftools/asyncPerf/MessageAsyncContext.h')
-rw-r--r--cpp/src/tests/storePerftools/asyncPerf/MessageAsyncContext.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/cpp/src/tests/storePerftools/asyncPerf/MessageAsyncContext.h b/cpp/src/tests/storePerftools/asyncPerf/MessageAsyncContext.h
index 77d7be286b..9252fbda45 100644
--- a/cpp/src/tests/storePerftools/asyncPerf/MessageAsyncContext.h
+++ b/cpp/src/tests/storePerftools/asyncPerf/MessageAsyncContext.h
@@ -40,18 +40,14 @@ class MessageAsyncContext : public qpid::broker::BrokerAsyncContext
{
public:
MessageAsyncContext(boost::intrusive_ptr<SimpleMessage> msg,
- const qpid::asyncStore::AsyncOperation::opCode op,
boost::shared_ptr<SimpleQueue> q);
virtual ~MessageAsyncContext();
- qpid::asyncStore::AsyncOperation::opCode getOpCode() const;
- const char* getOpStr() const;
boost::intrusive_ptr<SimpleMessage> getMessage() const;
boost::shared_ptr<SimpleQueue> getQueue() const;
void destroy();
private:
boost::intrusive_ptr<SimpleMessage> m_msg;
- const qpid::asyncStore::AsyncOperation::opCode m_op;
boost::shared_ptr<SimpleQueue> m_q;
};