Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
upgrade
/
updraftplus.1.23.12
/
updraftplus
/
vendor
/
guzzle
/
guzzle
/
src
/
Guzzle
/
Batch
:
BatchInterface.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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(); }