diff options
author | Kim van der Riet <kpvdr@apache.org> | 2012-07-25 12:03:34 +0000 |
---|---|---|
committer | Kim van der Riet <kpvdr@apache.org> | 2012-07-25 12:03:34 +0000 |
commit | b435b07eb8fa9db484f85b39daaf43642dd623ca (patch) | |
tree | c327f38fb21c75267abdb9cd338fe3778d883140 /cpp/src/tests/storePerftools/asyncPerf/SimpleQueue.h | |
parent | 75e9139d60bc049fabf9b3b779ddd157bb5160bb (diff) | |
download | qpid-python-b435b07eb8fa9db484f85b39daaf43642dd623ca.tar.gz |
QPID-3858: WIP: Removed PersistableQueuedMessage again. The non-durable transactional enqueues are broken.
git-svn-id: https://svn.apache.org/repos/asf/qpid/branches/asyncstore@1365545 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests/storePerftools/asyncPerf/SimpleQueue.h')
-rw-r--r-- | cpp/src/tests/storePerftools/asyncPerf/SimpleQueue.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cpp/src/tests/storePerftools/asyncPerf/SimpleQueue.h b/cpp/src/tests/storePerftools/asyncPerf/SimpleQueue.h index 1126d67775..bf88e32345 100644 --- a/cpp/src/tests/storePerftools/asyncPerf/SimpleQueue.h +++ b/cpp/src/tests/storePerftools/asyncPerf/SimpleQueue.h @@ -49,7 +49,6 @@ namespace asyncPerf { class MessageConsumer; class Messages; -class PersistableQueuedMessage; class QueuedMessage; class SimpleMessage; @@ -136,10 +135,10 @@ private: // -- Async ops --- bool asyncEnqueue(qpid::broker::TxnHandle& th, - boost::shared_ptr<PersistableQueuedMessage> pqm); + boost::shared_ptr<QueuedMessage> qm); static void handleAsyncEnqueueResult(const qpid::broker::AsyncResultHandle* const arh); bool asyncDequeue(qpid::broker::TxnHandle& th, - boost::shared_ptr<PersistableQueuedMessage> pqm); + boost::shared_ptr<QueuedMessage> qm); static void handleAsyncDequeueResult(const qpid::broker::AsyncResultHandle* const arh); // --- Async op counter --- |