summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/qpid/broker/QueueCleaner.cpp
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2008-10-13 17:09:06 +0000
committerGordon Sim <gsim@apache.org>2008-10-13 17:09:06 +0000
commita251b4401edca8cc565550061ca9d7ce507d6ddf (patch)
treea5944640c0a534f12059fa85c327db8c91f81b5a /qpid/cpp/src/qpid/broker/QueueCleaner.cpp
parent46b5fe1ed0169a36744f542c8f646609a83490f6 (diff)
downloadqpid-python-a251b4401edca8cc565550061ca9d7ce507d6ddf.tar.gz
Periodically purge expired messages from queues
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@704166 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/qpid/broker/QueueCleaner.cpp')
-rw-r--r--qpid/cpp/src/qpid/broker/QueueCleaner.cpp52
1 files changed, 52 insertions, 0 deletions
diff --git a/qpid/cpp/src/qpid/broker/QueueCleaner.cpp b/qpid/cpp/src/qpid/broker/QueueCleaner.cpp
new file mode 100644
index 0000000000..0774dce2b7
--- /dev/null
+++ b/qpid/cpp/src/qpid/broker/QueueCleaner.cpp
@@ -0,0 +1,52 @@
+/*
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ *
+ */
+#include "QueueCleaner.h"
+
+#include "Broker.h"
+#include <boost/bind.hpp>
+
+namespace qpid {
+namespace broker {
+
+QueueCleaner::QueueCleaner(QueueRegistry& q, Timer& t) : queues(q), timer(t) {}
+
+void QueueCleaner::start(qpid::sys::Duration p)
+{
+ task = boost::intrusive_ptr<TimerTask>(new Task(*this, p));
+ timer.add(task);
+}
+
+QueueCleaner::Task::Task(QueueCleaner& p, qpid::sys::Duration d) : TimerTask(d), parent(p) {}
+
+void QueueCleaner::Task::fire()
+{
+ parent.fired();
+}
+
+void QueueCleaner::fired()
+{
+ queues.eachQueue(boost::bind(&Queue::purgeExpired, _1));
+ task->reset();
+ timer.add(task);
+}
+
+
+}} // namespace qpid::broker