diff options
| author | Alan Conway <aconway@apache.org> | 2008-05-26 18:10:05 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2008-05-26 18:10:05 +0000 |
| commit | ce7678789fe3e8c5caebb59a26aa418fbb95e5d3 (patch) | |
| tree | affd8e2de460cba285e7c25e15f5c3d94444f905 /cpp/src/Makefile.am | |
| parent | 0b56077cbb8b6e9cdd982cbdeaa3ec6fe1bd5434 (diff) | |
| download | qpid-python-ce7678789fe3e8c5caebb59a26aa418fbb95e5d3.tar.gz | |
Changes to Session API:
- Session is synchronous, no futures.
- AsyncSession is async, returns futures.
- Conversion functions sync(s) async(s) return a sync/async view of session s.
- Connection::newSession - takes name, no timeout
- SessionBase::getId - returns SessionId not UUID.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@660258 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/Makefile.am')
| -rw-r--r-- | cpp/src/Makefile.am | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/cpp/src/Makefile.am b/cpp/src/Makefile.am index 1c8ca9da12..0bd04ec6cb 100644 --- a/cpp/src/Makefile.am +++ b/cpp/src/Makefile.am @@ -324,7 +324,9 @@ libqpidclient_la_SOURCES = \ qpid/client/MessageListener.cpp \ qpid/client/Queue.cpp \ qpid/client/Results.cpp \ - qpid/client/SessionBase.cpp \ + qpid/client/SessionBase_0_10.cpp \ + qpid/client/SessionBase_0_10.h \ + qpid/client/SessionBase_0_10Access.h \ qpid/client/SessionImpl.cpp \ qpid/client/StateManager.cpp \ qpid/client/SubscriptionManager.cpp @@ -446,8 +448,9 @@ nobase_include_HEADERS = \ qpid/client/MessageQueue.h \ qpid/client/Queue.h \ qpid/client/Results.h \ - qpid/client/SessionBase.h \ + qpid/client/SessionBase_0_10.h \ qpid/client/Session.h \ + qpid/client/AsyncSession.h \ qpid/client/SessionImpl.h \ qpid/client/StateManager.h \ qpid/client/SubscriptionManager.h \ |
