diff options
| author | Gordon Sim <gsim@apache.org> | 2007-09-28 15:06:12 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2007-09-28 15:06:12 +0000 |
| commit | b46c7467a0422e16f63f6b7d7fabb8d1ca9a2cff (patch) | |
| tree | ed896b93d4ebd1c7357fee7569c37564d913f999 /cpp/src/qpid/client/Execution.h | |
| parent | 816b56837d862980e9086fe8ed02b84ca764eb1f (diff) | |
| download | qpid-python-b46c7467a0422e16f63f6b7d7fabb8d1ca9a2cff.tar.gz | |
Minor refactoring of execution layer
Set sync bit when session is in sync mode
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@580380 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/client/Execution.h')
| -rw-r--r-- | cpp/src/qpid/client/Execution.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cpp/src/qpid/client/Execution.h b/cpp/src/qpid/client/Execution.h index 809dcc7592..9caac45790 100644 --- a/cpp/src/qpid/client/Execution.h +++ b/cpp/src/qpid/client/Execution.h @@ -35,6 +35,8 @@ public: virtual void sendFlushRequest() = 0; virtual void completed(const framing::SequenceNumber& id, bool cumulative, bool send) = 0; virtual Demux& getDemux() = 0; + virtual bool isComplete(const framing::SequenceNumber& id) = 0; + virtual bool isCompleteUpTo(const framing::SequenceNumber& id) = 0; }; }} |
