diff options
| author | Gordon Sim <gsim@apache.org> | 2010-04-09 15:08:47 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2010-04-09 15:08:47 +0000 |
| commit | ef958e7b221d38ec76c392f76a66978211d6d1f9 (patch) | |
| tree | 111ba60857b7613f18e64f5c817d6e271428013e /cpp/src/qpid/messaging/ConnectionImpl.h | |
| parent | 2daf8e11866364ff4955ee69625bf401e9baa93c (diff) | |
| download | qpid-python-ef958e7b221d38ec76c392f76a66978211d6d1f9.tar.gz | |
QPID-664: changed connect() back to open(),removed detach(),defined new exception hierarchy, added ability to re-use reconnect/replay logic for resource-limit-exceeded errors
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@932451 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/messaging/ConnectionImpl.h')
| -rw-r--r-- | cpp/src/qpid/messaging/ConnectionImpl.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cpp/src/qpid/messaging/ConnectionImpl.h b/cpp/src/qpid/messaging/ConnectionImpl.h index 148105476d..23ab5272d0 100644 --- a/cpp/src/qpid/messaging/ConnectionImpl.h +++ b/cpp/src/qpid/messaging/ConnectionImpl.h @@ -38,9 +38,8 @@ class ConnectionImpl : public virtual qpid::RefCounted { public: virtual ~ConnectionImpl() {} - virtual void connect() = 0; - virtual bool isConnected() = 0; - virtual void detach() = 0; + virtual void open() = 0; + virtual bool isOpen() = 0; virtual void close() = 0; virtual Session newSession(bool transactional, const std::string& name) = 0; virtual Session getSession(const std::string& name) const = 0; |
