summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/messaging/SenderImpl.h
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2010-04-06 14:52:47 +0000
committerGordon Sim <gsim@apache.org>2010-04-06 14:52:47 +0000
commit8fddccd7efb73cd25376f5492ddb09ad7fa09e3b (patch)
tree2c2e7045eb1a4733fbb24a4f7106e96dca945ae0 /cpp/src/qpid/messaging/SenderImpl.h
parent48d21770c0c93551180043ddf27b1b7178382a4a (diff)
downloadqpid-python-8fddccd7efb73cd25376f5492ddb09ad7fa09e3b.tar.gz
QPID-664: added param to control synchronous send and acknowledge
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@931170 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/messaging/SenderImpl.h')
-rw-r--r--cpp/src/qpid/messaging/SenderImpl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/messaging/SenderImpl.h b/cpp/src/qpid/messaging/SenderImpl.h
index 7653049c26..66651a16dc 100644
--- a/cpp/src/qpid/messaging/SenderImpl.h
+++ b/cpp/src/qpid/messaging/SenderImpl.h
@@ -33,7 +33,7 @@ class SenderImpl : public virtual qpid::RefCounted
{
public:
virtual ~SenderImpl() {}
- virtual void send(const Message& message) = 0;
+ virtual void send(const Message& message, bool sync) = 0;
virtual void close() = 0;
virtual void setCapacity(uint32_t) = 0;
virtual uint32_t getCapacity() = 0;