diff options
| author | Gordon Sim <gsim@apache.org> | 2008-04-20 12:10:37 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2008-04-20 12:10:37 +0000 |
| commit | 4780580874e8d6a3e3590fa5fdf8a088310b20ae (patch) | |
| tree | a73e247b9821c2429a8e015ddff9cbb5d17a88e8 /qpid/cpp/src/Makefile.am | |
| parent | e29bb6406ad8d0c0d9d58b7d1d09798829687602 (diff) | |
| download | qpid-python-4780580874e8d6a3e3590fa5fdf8a088310b20ae.tar.gz | |
QPID-920: converted c++ client to use final 0-10 protocol
* connection handler converted to using invoker & proxy and updated to final method defs
* SessionCore & ExecutionHandler replace by SessionImpl
* simplified handling of completion & results, removed handling of responses
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@649915 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/Makefile.am')
| -rw-r--r-- | qpid/cpp/src/Makefile.am | 20 |
1 files changed, 7 insertions, 13 deletions
diff --git a/qpid/cpp/src/Makefile.am b/qpid/cpp/src/Makefile.am index 82e6f4e6a4..cf4630cdf0 100644 --- a/qpid/cpp/src/Makefile.am +++ b/qpid/cpp/src/Makefile.am @@ -265,26 +265,24 @@ libqpidbroker_la_SOURCES = \ libqpidclient_la_LIBADD = libqpidcommon.la libqpidclient_la_SOURCES = \ $(rgen_client_srcs) \ - qpid/client/SessionBase.cpp \ qpid/client/Connection.cpp \ qpid/client/Channel.cpp \ qpid/client/Exchange.cpp \ - qpid/broker/PersistableMessage.cpp \ qpid/client/Queue.cpp \ qpid/client/ConnectionImpl.cpp \ qpid/client/Connector.cpp \ qpid/client/Demux.cpp \ qpid/client/Dispatcher.cpp \ qpid/client/LocalQueue.cpp \ + qpid/client/Message.cpp \ qpid/client/MessageListener.cpp \ - qpid/client/Correlator.cpp \ - qpid/client/CompletionTracker.cpp \ qpid/client/ConnectionHandler.cpp \ - qpid/client/ExecutionHandler.cpp \ + qpid/client/Future.cpp \ qpid/client/FutureCompletion.cpp \ - qpid/client/FutureResponse.cpp \ qpid/client/FutureResult.cpp \ - qpid/client/SessionCore.cpp \ + qpid/client/Results.cpp \ + qpid/client/SessionBase.cpp \ + qpid/client/SessionImpl.cpp \ qpid/client/StateManager.cpp \ qpid/client/SubscriptionManager.cpp @@ -392,27 +390,23 @@ nobase_include_HEADERS = \ qpid/client/Queue.h \ qpid/client/AckPolicy.h \ qpid/client/Completion.h \ - qpid/client/CompletionTracker.h \ qpid/client/Connection.h \ qpid/client/ConnectionHandler.h \ qpid/client/ConnectionImpl.h \ qpid/client/Connector.h \ - qpid/client/Correlator.h \ qpid/client/Demux.h \ qpid/client/Dispatcher.h \ qpid/client/LocalQueue.h \ qpid/client/Execution.h \ - qpid/client/ExecutionHandler.h \ qpid/client/Future.h \ qpid/client/FutureCompletion.h \ - qpid/client/FutureResponse.h \ qpid/client/FutureResult.h \ qpid/client/MessageListener.h \ qpid/client/MessageQueue.h \ - qpid/client/Response.h \ + qpid/client/Results.h \ qpid/client/SessionBase.h \ qpid/client/Session.h \ - qpid/client/SessionCore.h \ + qpid/client/SessionImpl.h \ qpid/client/StateManager.h \ qpid/client/SubscriptionManager.h \ qpid/client/TypedResult.h \ |
