diff options
| author | Gordon Sim <gsim@apache.org> | 2007-10-01 10:24:25 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2007-10-01 10:24:25 +0000 |
| commit | 01647c7581b2a9549555c2c2f306c8b072b571a2 (patch) | |
| tree | bfe73f8ddb1b606f9f7b5f89db7ae1e791913c2d /cpp/src/qpid/client/Execution.h | |
| parent | d7bc99dfca05ce5eb8029282c7d09776af2a0f2c (diff) | |
| download | qpid-python-01647c7581b2a9549555c2c2f306c8b072b571a2.tar.gz | |
Make ExecutionHandler threadsafe for calls that can be made by application threads.
Added generic listener for completion changes.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@580915 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/client/Execution.h')
| -rw-r--r-- | cpp/src/qpid/client/Execution.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cpp/src/qpid/client/Execution.h b/cpp/src/qpid/client/Execution.h index 9caac45790..66a720a699 100644 --- a/cpp/src/qpid/client/Execution.h +++ b/cpp/src/qpid/client/Execution.h @@ -37,6 +37,7 @@ public: virtual Demux& getDemux() = 0; virtual bool isComplete(const framing::SequenceNumber& id) = 0; virtual bool isCompleteUpTo(const framing::SequenceNumber& id) = 0; + virtual void setCompletionListener(boost::function<void()>) = 0; }; }} |
