AggregateException |
vendor/guzzlehttp/promises/src/AggregateException.php |
Exception thrown when too many errors occur in the some() or any() methods. |
CancellationException |
vendor/guzzlehttp/promises/src/CancellationException.php |
Exception that is set as the reason for a promise that has been cancelled. |
Coroutine |
vendor/guzzlehttp/promises/src/Coroutine.php |
Creates a promise that is resolved using a generator that yields values or
promises (somewhat similar to C#'s async keyword). |
EachPromise |
vendor/guzzlehttp/promises/src/EachPromise.php |
Represents a promise that iterates over many promises and invokes
side-effect functions in the process. |
FulfilledPromise |
vendor/guzzlehttp/promises/src/FulfilledPromise.php |
A promise that has been fulfilled. |
Promise |
vendor/guzzlehttp/promises/src/Promise.php |
Promises/A+ implementation that avoids recursion when possible. |
PromiseInterface |
vendor/guzzlehttp/promises/src/PromiseInterface.php |
A promise represents the eventual result of an asynchronous operation. |
PromisorInterface |
vendor/guzzlehttp/promises/src/PromisorInterface.php |
Interface used with classes that return a promise. |
RejectedPromise |
vendor/guzzlehttp/promises/src/RejectedPromise.php |
A promise that has been rejected. |
RejectionException |
vendor/guzzlehttp/promises/src/RejectionException.php |
A special exception that is thrown when waiting on a rejected promise. |
TaskQueue |
vendor/guzzlehttp/promises/src/TaskQueue.php |
A task queue that executes tasks in a FIFO order. |
TaskQueueInterface |
vendor/guzzlehttp/promises/src/TaskQueueInterface.php |
|