PATH:
home
/
lab2454c
/
foreclass.com
/
wp-content
/
plugins
/
updraftplus
/
vendor
/
guzzle
/
guzzle
/
src
/
Guzzle
/
Batch
<?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(); }
[-] AbstractBatchDecorator.php
[edit]
[-] composer.json
[edit]
[+]
..
[+]
Exception
[-] FlushingBatch.php
[edit]
[-] ExceptionBufferingBatch.php
[edit]
[-] BatchInterface.php
[edit]
[-] BatchBuilder.php
[edit]
[-] BatchSizeDivisor.php
[edit]
[-] BatchCommandTransfer.php
[edit]
[-] BatchTransferInterface.php
[edit]
[-] NotifyingBatch.php
[edit]
[-] BatchRequestTransfer.php
[edit]
[-] HistoryBatch.php
[edit]
[-] BatchClosureTransfer.php
[edit]
[-] BatchDivisorInterface.php
[edit]
[-] BatchClosureDivisor.php
[edit]
[-] Batch.php
[edit]