summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/cluster/PollerDispatch.cpp
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2010-10-27 18:01:27 +0000
committerAlan Conway <aconway@apache.org>2010-10-27 18:01:27 +0000
commit326dddd0d0d48401d14ca93044b3fc0e35ad87d9 (patch)
tree019a45480d8cdf832f62d7176b7a10a5d0971535 /cpp/src/qpid/cluster/PollerDispatch.cpp
parentaae11121cfcf891b2365241141f9ab9cb47d3024 (diff)
downloadqpid-python-326dddd0d0d48401d14ca93044b3fc0e35ad87d9.tar.gz
Revert experimental cluster code, too close to 0.8 release.
Reverts revisions: r1023966 "Introduce broker::Cluster interface." r1024275 "Fix compile error: outline set/getCluster fucntions on Broker." r1027210 "New cluster: core framework and initial implementation of enqueue logic." git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1028055 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/cluster/PollerDispatch.cpp')
-rw-r--r--cpp/src/qpid/cluster/PollerDispatch.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/cpp/src/qpid/cluster/PollerDispatch.cpp b/cpp/src/qpid/cluster/PollerDispatch.cpp
index 43c171efe8..b8d94b95a5 100644
--- a/cpp/src/qpid/cluster/PollerDispatch.cpp
+++ b/cpp/src/qpid/cluster/PollerDispatch.cpp
@@ -37,11 +37,9 @@ PollerDispatch::PollerDispatch(Cpg& c, boost::shared_ptr<sys::Poller> p,
started(false)
{}
-PollerDispatch::~PollerDispatch() { stop(); }
-
-void PollerDispatch::stop() {
- if (started) dispatchHandle.stopWatch();
- started = false;
+PollerDispatch::~PollerDispatch() {
+ if (started)
+ dispatchHandle.stopWatch();
}
void PollerDispatch::start() {
@@ -56,7 +54,6 @@ void PollerDispatch::dispatch(sys::DispatchHandle& h) {
h.rewatch();
} catch (const std::exception& e) {
QPID_LOG(critical, "Error in cluster dispatch: " << e.what());
- stop();
onError();
}
}