diff options
author | Kim van der Riet <kpvdr@apache.org> | 2012-07-20 12:55:20 +0000 |
---|---|---|
committer | Kim van der Riet <kpvdr@apache.org> | 2012-07-20 12:55:20 +0000 |
commit | 2e437e1569009d8e8ed3ed896d751994e2e85d74 (patch) | |
tree | 28459e48638bfcd3a7e565c37165b3fab714d484 /cpp/src/qpid/asyncStore/OperationQueue.h | |
parent | c94c9b5333c06c03deb6a6dcb1a91ecdf111b481 (diff) | |
download | qpid-python-2e437e1569009d8e8ed3ed896d751994e2e85d74.tar.gz |
QPID-3858: WIP: Created many async operation classes for each op instead of a single class with op codes.
git-svn-id: https://svn.apache.org/repos/asf/qpid/branches/asyncstore@1363759 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/asyncStore/OperationQueue.h')
-rw-r--r-- | cpp/src/qpid/asyncStore/OperationQueue.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/asyncStore/OperationQueue.h b/cpp/src/qpid/asyncStore/OperationQueue.h index 143ac2ab0c..473b5f1cfb 100644 --- a/cpp/src/qpid/asyncStore/OperationQueue.h +++ b/cpp/src/qpid/asyncStore/OperationQueue.h @@ -26,7 +26,6 @@ #include "AsyncOperation.h" -//#include "qpid/broker/AsyncStore.h" #include "qpid/sys/PollableQueue.h" namespace qpid { @@ -43,6 +42,7 @@ private: typedef qpid::sys::PollableQueue<boost::shared_ptr<const AsyncOperation> > OpQueue; OpQueue m_opQueue; + // Callback function for pollable queue, defined in qpid::sys::PollableQueue OpQueue::Batch::const_iterator handle(const OpQueue::Batch& e); }; |