summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/cluster/Cluster.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/qpid/cluster/Cluster.h')
-rw-r--r--cpp/src/qpid/cluster/Cluster.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/cpp/src/qpid/cluster/Cluster.h b/cpp/src/qpid/cluster/Cluster.h
index 14df4db905..2ab2da6fa8 100644
--- a/cpp/src/qpid/cluster/Cluster.h
+++ b/cpp/src/qpid/cluster/Cluster.h
@@ -79,7 +79,6 @@ class Cluster : private Cpg::Handler, public management::Manageable {
// Send to the cluster
void mcastControl(const framing::AMQBody& controlBody, const ConnectionId&, uint32_t id);
void mcastBuffer(const char*, size_t, const ConnectionId&, uint32_t id);
- void mcast(const Event& e);
// URLs of current cluster members.
std::vector<Url> getUrls() const;
@@ -110,11 +109,9 @@ class Cluster : private Cpg::Handler, public management::Manageable {
// The parameter makes it hard to forget since you have to have an instance of
// a Lock to call the unlocked functions.
- // Unlocked versions of public functions
- void mcastControl(const framing::AMQBody& controlBody, const ConnectionId&, uint32_t, Lock&);
- void mcastControl(const framing::AMQBody& controlBody, Lock&);
- void mcastBuffer(const char*, size_t, const ConnectionId&, uint32_t id, Lock&);
- void mcast(const Event& e, Lock&);
+ void mcastControl(const framing::AMQBody& controlBody);
+ void mcast(const Event& e);
+
void leave(Lock&);
std::vector<Url> getUrls(Lock&) const;