summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/Makefile.am
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2009-10-26 20:11:08 +0000
committerAlan Conway <aconway@apache.org>2009-10-26 20:11:08 +0000
commit2a9e3ffb12f3b621a2d8d3b4c84627cc0613b9cc (patch)
tree9c95f000293596c27b8f1058e50c46857b3c7cfc /qpid/cpp/src/Makefile.am
parent3bb44f765c64867196c00801f7299d490c41b5f4 (diff)
downloadqpid-python-2a9e3ffb12f3b621a2d8d3b4c84627cc0613b9cc.tar.gz
Separate FailoverListener from client::Connection.
client::ConnectionImpl used to contain a FailoverListener to subscribe for updates on the amq.failover exchange. This caused some lifecycle issues including memory leaks. Now FailoverListener is a public API class that the user must create associated with a session to get known-broker updates. Removed the weak_ptr logic in client::SessionImpl which was only required because of FailoverListener. Made SessionImpl::close() idempotent. Gets rid of spurious warning messages in some tests. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@829931 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/Makefile.am')
-rw-r--r--qpid/cpp/src/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/Makefile.am b/qpid/cpp/src/Makefile.am
index a6b90d7bde..6434b96e7b 100644
--- a/qpid/cpp/src/Makefile.am
+++ b/qpid/cpp/src/Makefile.am
@@ -652,7 +652,6 @@ libqpidclient_la_SOURCES = \
qpid/client/Dispatcher.h \
qpid/client/Execution.h \
qpid/client/FailoverListener.cpp \
- qpid/client/FailoverListener.h \
qpid/client/FailoverManager.cpp \
qpid/client/Future.cpp \
qpid/client/FutureCompletion.cpp \
@@ -744,6 +743,7 @@ nobase_include_HEADERS += \
../include/qpid/client/Completion.h \
../include/qpid/client/Connection.h \
../include/qpid/client/ConnectionSettings.h \
+ ../include/qpid/client/FailoverListener.h \
../include/qpid/client/FailoverManager.h \
../include/qpid/client/FlowControl.h \
../include/qpid/client/Future.h \