summaryrefslogtreecommitdiff
path: root/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/guzzle/guzzle/src/Guzzle/Batch/BatchInterface.php')
-rw-r--r--vendor/guzzle/guzzle/src/Guzzle/Batch/BatchInterface.php32
1 files changed, 32 insertions, 0 deletions
diff --git a/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchInterface.php b/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchInterface.php
new file mode 100644
index 0000000..28ea65c
--- /dev/null
+++ b/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchInterface.php
@@ -0,0 +1,32 @@
+<?php
+
+namespace Guzzle\Batch;
+
+/**
+ * Interface for efficiently transferring items in a queue using batches
+ */
+interface BatchInterface
+{
+ /**
+ * Add an item to the queue
+ *
+ * @param mixed $item Item to add
+ *
+ * @return self
+ */
+ public function add($item);
+
+ /**
+ * Flush the batch and transfer the items
+ *
+ * @return array Returns an array flushed items
+ */
+ public function flush();
+
+ /**
+ * Check if the batch is empty and has further items to transfer
+ *
+ * @return bool
+ */
+ public function isEmpty();
+}