summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/cluster/Cluster.h
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2008-09-25 12:30:14 +0000
committerAlan Conway <aconway@apache.org>2008-09-25 12:30:14 +0000
commit48f511ecb4a772f2cf6048f9b5ddbf9a4e3f9587 (patch)
tree7b75738562cf97befd775868670c336995ba0cd1 /cpp/src/qpid/cluster/Cluster.h
parentcd78f5c69d70b43e5bf82fa9125eb876bc3bbc42 (diff)
downloadqpid-python-48f511ecb4a772f2cf6048f9b5ddbf9a4e3f9587.tar.gz
Enabled management, add cluster shutdown command.
Remove dead Handler methods in Cluster. Fixed SessionException handling in broker, was throwing some SessionExceptions as "unknown exception" git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@698945 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/cluster/Cluster.h')
-rw-r--r--cpp/src/qpid/cluster/Cluster.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/cpp/src/qpid/cluster/Cluster.h b/cpp/src/qpid/cluster/Cluster.h
index 55358e25db..ec43c56c69 100644
--- a/cpp/src/qpid/cluster/Cluster.h
+++ b/cpp/src/qpid/cluster/Cluster.h
@@ -83,11 +83,6 @@ class Cluster : private Cpg::Handler, public management::Manageable
/** Leave the cluster */
void leave();
- // Cluster controls.
- void update(const MemberId&, const framing::FieldTable& members, uint64_t dumping);
- void dumpRequest(const MemberId&, const std::string& url);
- void ready(const MemberId&, const std::string& url);
-
MemberId getSelf() const { return self; }
MemberId getId() const { return self; }
@@ -95,7 +90,7 @@ class Cluster : private Cpg::Handler, public management::Manageable
void stall();
void unstall();
- void shutdown();
+ void brokerShutdown();
broker::Broker& getBroker();
@@ -172,6 +167,7 @@ class Cluster : private Cpg::Handler, public management::Manageable
size_t mcastId;
+ friend class ClusterHandler;
friend class JoiningHandler;
friend class MemberHandler;
};