Lines Matching full:future
2 namespace GuzzleHttp\Ring\Future;
10 * You can use the future in a blocking manner using the wait() function, or
11 * you can use a promise from the future to receive the result when the future
14 * When the future is dereferenced using wait(), the result of the computation
17 * will block until the future has completed.
22 * Returns the result of the future either from cache or by blocking until
25 * This method must block until the future has a result or is cancelled.
26 * Throwing an exception in the wait() method will mark the future as
29 * the future as realized, will not throw immediately, but will throw the
30 * exception if the future's wait() method is called again.
37 * Cancels the future, if possible.