Version 1
[yaffs-website] / web / core / lib / Drupal / Core / Queue / ReliableQueueInterface.php
diff --git a/web/core/lib/Drupal/Core/Queue/ReliableQueueInterface.php b/web/core/lib/Drupal/Core/Queue/ReliableQueueInterface.php
new file mode 100644 (file)
index 0000000..6c3c213
--- /dev/null
@@ -0,0 +1,14 @@
+<?php
+
+namespace Drupal\Core\Queue;
+
+/**
+ * Reliable queue interface.
+ *
+ * Classes implementing this interface preserve the order of messages and
+ * guarantee that every item will be executed at least once.
+ *
+ * @ingroup queue
+ */
+interface ReliableQueueInterface extends QueueInterface {
+}