From e5a82bf72fb1035163ec3c6dfd97f8b248cd6dd8 Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Fri, 31 Aug 2007 20:51:22 +0000 Subject: * Summary: - Moved BrokerChannel functionality into Session. - Moved ChannelHandler methods handling into SessionAdapter. - Updated all handlers to use session. (We're still using AMQP channel methods in SessionAdapter) Roles & responsibilities: Session: - represents an _open_ session, may be active or suspended. - ows all session state including handler chains. - attahced to SessionAdapter when active, not when suspended. SessionAdapter: - reprents the association of a channel with a session. - owned by Connection, kept in the session map. - channel open == SessionAdapter.getSessio() != 0 Anything that depends on attachment to a channel, connection or protocol should be in SessionAdpater. Anything that suvives a session suspend belongs in Session. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@571575 13f79535-47bb-0310-9956-ffa450edef68 --- qpid/cpp/src/tests/Makefile.am | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'qpid/cpp/src/tests/Makefile.am') diff --git a/qpid/cpp/src/tests/Makefile.am b/qpid/cpp/src/tests/Makefile.am index 611b498524..9d3d86b091 100644 --- a/qpid/cpp/src/tests/Makefile.am +++ b/qpid/cpp/src/tests/Makefile.am @@ -28,8 +28,8 @@ CLEANFILES= TESTS+=Blob check_PROGRAMS+=Blob -Blob_SOURCES=Blob.cpp ../qpid/framing/Blob.cpp -Blob_LDADD=-lboost_unit_test_framework +Blob_SOURCES=Blob.cpp +Blob_LDADD=-lboost_unit_test_framework $(lib_common) TESTS+=logging check_PROGRAMS+=logging @@ -80,7 +80,6 @@ perftest_LDADD=$(lib_client) # Unit tests broker_unit_tests = \ AccumulatedAckTest \ - BrokerChannelTest \ DtxWorkRecordTest \ ExchangeTest \ HeadersExchangeTest \ -- cgit v1.2.1