diff options
| author | Alan Conway <aconway@apache.org> | 2008-08-29 18:18:45 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2008-08-29 18:18:45 +0000 |
| commit | ac1660c072fc1fc783731b7cd216861fc6999ac0 (patch) | |
| tree | 5e401b8cd8e4c491cefa4e74b8185e2cfc032736 /qpid/cpp/src/cluster.mk | |
| parent | 605ec8d6c0cfab3683fd962e42fbcd39b4b53db9 (diff) | |
| download | qpid-python-ac1660c072fc1fc783731b7cd216861fc6999ac0.tar.gz | |
Refactored cluster to intercept at ConnectionCode, using sys:: interfaces rather than boost functions.
Use framing::Operations and Invoker to dispatch cluster methods.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@690358 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/cluster.mk')
| -rw-r--r-- | qpid/cpp/src/cluster.mk | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/qpid/cpp/src/cluster.mk b/qpid/cpp/src/cluster.mk index 934ec0174b..d5be6dfc57 100644 --- a/qpid/cpp/src/cluster.mk +++ b/qpid/cpp/src/cluster.mk @@ -6,24 +6,26 @@ lib_LTLIBRARIES += libqpidcluster.la if CPG libqpidcluster_la_SOURCES = \ + qpid/cluster/types.h \ qpid/cluster/Cluster.cpp \ qpid/cluster/Cluster.h \ qpid/cluster/Cpg.cpp \ qpid/cluster/Cpg.h \ qpid/cluster/Dispatchable.h \ qpid/cluster/ClusterPlugin.cpp \ - qpid/cluster/ConnectionInterceptor.h \ - qpid/cluster/ConnectionInterceptor.cpp \ - qpid/cluster/ClassifierHandler.h \ - qpid/cluster/ClassifierHandler.cpp \ - qpid/cluster/ShadowConnectionOutputHandler.h \ + qpid/cluster/ConnectionCodec.h \ + qpid/cluster/ConnectionCodec.cpp \ + qpid/cluster/Connection.h \ + qpid/cluster/Connection.cpp \ + qpid/cluster/NoOpConnectionOutputHandler.h \ qpid/cluster/PollableCondition.h \ qpid/cluster/PollableCondition.cpp \ qpid/cluster/PollableQueue.h \ qpid/cluster/WriteEstimate.h \ qpid/cluster/WriteEstimate.cpp \ qpid/cluster/OutputInterceptor.h \ - qpid/cluster/OutputInterceptor.cpp + qpid/cluster/OutputInterceptor.cpp \ + qpid/cluster/ProxyInputHandler.h libqpidcluster_la_LIBADD= -lcpg libqpidbroker.la |
