PATH:
home
/
lab2454c
/
vaultchip.com
/
vendor
/
guzzlehttp
/
promises
/
src
<?php namespace GuzzleHttp\Promise; interface TaskQueueInterface { /** * Returns true if the queue is empty. * * @return bool */ public function isEmpty(); /** * Adds a task to the queue that will be executed the next time run is * called. */ public function add(callable $task); /** * Execute all of the pending task in the queue. */ public function run(); }
[-] FulfilledPromise.php
[edit]
[-] Coroutine.php
[edit]
[+]
..
[-] CancellationException.php
[edit]
[-] EachPromise.php
[edit]
[-] PromiseInterface.php
[edit]
[-] AggregateException.php
[edit]
[-] Utils.php
[edit]
[-] functions_include.php
[edit]
[-] Promise.php
[edit]
[-] RejectedPromise.php
[edit]
[-] Create.php
[edit]
[-] Each.php
[edit]
[-] functions.php
[edit]
[-] Is.php
[edit]
[-] RejectionException.php
[edit]
[-] PromisorInterface.php
[edit]
[-] TaskQueue.php
[edit]
[-] TaskQueueInterface.php
[edit]