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 | 946a899528f19dced51a62f362c2c7944412488c (patch) | |
| tree | 111ba60857b7613f18e64f5c817d6e271428013e /cpp/examples/messaging/server.cpp | |
| parent | 9ce278e04ed267effbca6da3deb1356e7014c72f (diff) | |
| download | qpid-python-946a899528f19dced51a62f362c2c7944412488c.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/examples/messaging/server.cpp')
| -rw-r--r-- | cpp/examples/messaging/server.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/examples/messaging/server.cpp b/cpp/examples/messaging/server.cpp index 33d28a75c4..ae1fee4b50 100644 --- a/cpp/examples/messaging/server.cpp +++ b/cpp/examples/messaging/server.cpp @@ -42,7 +42,7 @@ int main(int argc, char** argv) { Connection connection(url); try { - connection.connect(); + connection.open(); Session session = connection.createSession(); Receiver receiver = session.createReceiver("service_queue; {create: always}"); |
