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 | 72456749101ecd33ce01f9c79f9e9082985154f6 (patch) | |
| tree | 016dbf2c6f17506e261a6658d325025a35921d81 /qpid/cpp/src/tests/client_test.cpp | |
| parent | c2441211409b15fa125323549281a28d3fbf2f55 (diff) | |
| download | qpid-python-72456749101ecd33ce01f9c79f9e9082985154f6.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@660258 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/client_test.cpp')
| -rw-r--r-- | qpid/cpp/src/tests/client_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/tests/client_test.cpp b/qpid/cpp/src/tests/client_test.cpp index 20e8b21a3a..04269b299d 100644 --- a/qpid/cpp/src/tests/client_test.cpp +++ b/qpid/cpp/src/tests/client_test.cpp @@ -92,7 +92,7 @@ int main(int argc, char** argv) //Create and open a session on the connection through which //most functionality is exposed: - Session session = connection.newSession(ASYNC); + Session session = connection.newSession(); if (opts.verbose) std::cout << "Opened session." << std::endl; |
