diff options
author | Gordon Sim <gsim@apache.org> | 2011-02-15 14:17:45 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2011-02-15 14:17:45 +0000 |
commit | 6a87cd223a386526ccca0a1ba6f0bdd1c4320ba1 (patch) | |
tree | 15ca8c59c1a9a6786ab08690d7acf6320c1e1dc2 /cpp/src/qpid/broker/QueueRegistry.cpp | |
parent | 87381a0bae2b890688db1597d2d6a144935498a0 (diff) | |
download | qpid-python-6a87cd223a386526ccca0a1ba6f0bdd1c4320ba1.tar.gz |
QPID-3002: Configurable threshold alerts for queues
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1070913 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/broker/QueueRegistry.cpp')
-rw-r--r-- | cpp/src/qpid/broker/QueueRegistry.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/cpp/src/qpid/broker/QueueRegistry.cpp b/cpp/src/qpid/broker/QueueRegistry.cpp index 28b2d60cda..ea2531dae7 100644 --- a/cpp/src/qpid/broker/QueueRegistry.cpp +++ b/cpp/src/qpid/broker/QueueRegistry.cpp @@ -47,7 +47,6 @@ QueueRegistry::declare(const string& declareName, bool durable, Queue::shared_ptr queue(new Queue(name, autoDelete, durable ? store : 0, owner, parent, broker)); queues[name] = queue; if (lastNode) queue->setLastNodeFailure(); - if (events) queue->setQueueEventManager(*events); return std::pair<Queue::shared_ptr, bool>(queue, true); } else { @@ -108,8 +107,3 @@ void QueueRegistry::updateQueueClusterState(bool _lastNode) } lastNode = _lastNode; } - -void QueueRegistry::setQueueEvents(QueueEvents* e) -{ - events = e; -} |