summaryrefslogtreecommitdiffstats
path: root/src/uscxml/interpreter/EventQueue.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/uscxml/interpreter/EventQueue.cpp')
-rw-r--r--src/uscxml/interpreter/EventQueue.cpp56
1 files changed, 56 insertions, 0 deletions
diff --git a/src/uscxml/interpreter/EventQueue.cpp b/src/uscxml/interpreter/EventQueue.cpp
new file mode 100644
index 0000000..9b9fa88
--- /dev/null
+++ b/src/uscxml/interpreter/EventQueue.cpp
@@ -0,0 +1,56 @@
+/**
+ * @file
+ * @author 2016 Stefan Radomski (stefan.radomski@cs.tu-darmstadt.de)
+ * @copyright Simplified BSD
+ *
+ * @cond
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the FreeBSD license as published by the FreeBSD
+ * project.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ *
+ * You should have received a copy of the FreeBSD license along with this
+ * program. If not, see <http://www.opensource.org/licenses/bsd-license>.
+ * @endcond
+ */
+
+#include "uscxml/Common.h"
+#include "EventQueue.h"
+#include "EventQueueImpl.h"
+#include <string>
+#include <map>
+#include <list>
+#include <thread>
+#include <mutex>
+#include <condition_variable>
+
+#include <event2/event.h>
+
+
+namespace uscxml {
+
+Event EventQueue::dequeue(bool blocking) {
+ return _impl->dequeue(blocking);
+}
+void EventQueue::enqueue(const Event& event) {
+ return _impl->enqueue(event);
+}
+
+PIMPL_OPERATORS_INHERIT_IMPL(DelayedEventQueue, EventQueue)
+
+void DelayedEventQueue::enqueueDelayed(const Event& event, size_t delayMs, const std::string& eventUUID) {
+ _impl->enqueueDelayed(event, delayMs, eventUUID);
+}
+void DelayedEventQueue::cancelDelayed(const std::string& eventUUID) {
+ return _impl->cancelDelayed(eventUUID);
+}
+
+void DelayedEventQueue::cancelAllDelayed() {
+ return _impl->cancelAllDelayed();
+}
+
+}
+