summaryrefslogtreecommitdiff
path: root/cpp/src/tests/storePerftools/asyncPerf/SimpleQueue.h
diff options
context:
space:
mode:
authorKim van der Riet <kpvdr@apache.org>2012-07-20 13:50:48 +0000
committerKim van der Riet <kpvdr@apache.org>2012-07-20 13:50:48 +0000
commitdd79efca55e3ff0a0e0c25e395967ce9b3f80482 (patch)
treee10963e1718a58e3ee4cfaf41cd08bc6856d3b63 /cpp/src/tests/storePerftools/asyncPerf/SimpleQueue.h
parent2e437e1569009d8e8ed3ed896d751994e2e85d74 (diff)
downloadqpid-python-dd79efca55e3ff0a0e0c25e395967ce9b3f80482.tar.gz
QPID-3858: WIP: Moved QueueAsycnContext from namespace tests::storePerftools::asyncPerf to qpid::broker
git-svn-id: https://svn.apache.org/repos/asf/qpid/branches/asyncstore@1363776 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests/storePerftools/asyncPerf/SimpleQueue.h')
-rw-r--r--cpp/src/tests/storePerftools/asyncPerf/SimpleQueue.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/cpp/src/tests/storePerftools/asyncPerf/SimpleQueue.h b/cpp/src/tests/storePerftools/asyncPerf/SimpleQueue.h
index f13febbafa..1126d67775 100644
--- a/cpp/src/tests/storePerftools/asyncPerf/SimpleQueue.h
+++ b/cpp/src/tests/storePerftools/asyncPerf/SimpleQueue.h
@@ -37,6 +37,7 @@
namespace qpid {
namespace broker {
class AsyncResultQueue;
+class QueueAsyncContext;
}
namespace framing {
class FieldTable;
@@ -49,7 +50,6 @@ namespace asyncPerf {
class MessageConsumer;
class Messages;
class PersistableQueuedMessage;
-class QueueAsyncContext;
class QueuedMessage;
class SimpleMessage;
@@ -146,11 +146,11 @@ private:
void destroyCheck(const std::string& opDescr) const;
// --- Async op completions (called through handleAsyncResult) ---
- void createComplete(const boost::shared_ptr<QueueAsyncContext> qc);
- void flushComplete(const boost::shared_ptr<QueueAsyncContext> qc);
- void destroyComplete(const boost::shared_ptr<QueueAsyncContext> qc);
- void enqueueComplete(const boost::shared_ptr<QueueAsyncContext> qc);
- void dequeueComplete(const boost::shared_ptr<QueueAsyncContext> qc);
+ void createComplete(const boost::shared_ptr<qpid::broker::QueueAsyncContext> qc);
+ void flushComplete(const boost::shared_ptr<qpid::broker::QueueAsyncContext> qc);
+ void destroyComplete(const boost::shared_ptr<qpid::broker::QueueAsyncContext> qc);
+ void enqueueComplete(const boost::shared_ptr<qpid::broker::QueueAsyncContext> qc);
+ void dequeueComplete(const boost::shared_ptr<qpid::broker::QueueAsyncContext> qc);
};
}}} // namespace tests::storePerftools::asyncPerf