diff options
| author | Gordon Sim <gsim@apache.org> | 2009-11-23 12:50:58 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2009-11-23 12:50:58 +0000 |
| commit | 08d70d83487d6c39cdef50f9c90e001787849286 (patch) | |
| tree | a71b400af2659b03eb5aeb98cfce870495b14382 /cpp/src/qpid/client/amqp0_10/ConnectionImpl.h | |
| parent | 86fab2271457603040d420a6af7f88f2503cba77 (diff) | |
| download | qpid-python-08d70d83487d6c39cdef50f9c90e001787849286.tar.gz | |
QPID-664: Allow session to be specified as transactional; add basic test of transaction implementation.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@883325 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/client/amqp0_10/ConnectionImpl.h')
| -rw-r--r-- | cpp/src/qpid/client/amqp0_10/ConnectionImpl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/client/amqp0_10/ConnectionImpl.h b/cpp/src/qpid/client/amqp0_10/ConnectionImpl.h index 5272121f92..979cc6c82a 100644 --- a/cpp/src/qpid/client/amqp0_10/ConnectionImpl.h +++ b/cpp/src/qpid/client/amqp0_10/ConnectionImpl.h @@ -42,7 +42,7 @@ class ConnectionImpl : public qpid::messaging::ConnectionImpl public: ConnectionImpl(const std::string& url, const qpid::messaging::Variant::Map& options); void close(); - qpid::messaging::Session newSession(const std::string& name); + qpid::messaging::Session newSession(bool transactional, const std::string& name); qpid::messaging::Session getSession(const std::string& name) const; void closed(SessionImpl&); void reconnect(); |
