summaryrefslogtreecommitdiff
path: root/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchDivisorInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/guzzle/guzzle/src/Guzzle/Batch/BatchDivisorInterface.php')
-rw-r--r--vendor/guzzle/guzzle/src/Guzzle/Batch/BatchDivisorInterface.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchDivisorInterface.php b/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchDivisorInterface.php
new file mode 100644
index 0000000..0214f05
--- /dev/null
+++ b/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchDivisorInterface.php
@@ -0,0 +1,18 @@
+<?php
+
+namespace Guzzle\Batch;
+
+/**
+ * Interface used for dividing a queue of items into an array of batches
+ */
+interface BatchDivisorInterface
+{
+ /**
+ * Divide a queue of items into an array batches
+ *
+ * @param \SplQueue $queue Queue of items to divide into batches. Items are removed as they are iterated.
+ *
+ * @return array|\Traversable Returns an array or Traversable object that contains arrays of items to transfer
+ */
+ public function createBatches(\SplQueue $queue);
+}