Lines Matching refs:that

3 [Promises/A+](https://promisesaplus.com/) implementation that handles promise
27 - Works with any object that has a `then` function.
62 *Resolving* a promise means that you either fulfill a promise with a *value* or
201 method. When creating a promise, you can provide a wait function that is used
228 Calling `wait` on a promise that has been fulfilled will not trigger the wait
237 Calling `wait` on a promise that has been rejected will throw an exception. If
271 upon until the unwrapped value is not a promise. This means that if you resolve
280 You can cancel a promise that has not yet been fulfilled using the `cancel()`
282 cancel function that when invoked cancels the action of computing a resolution
292 `$cancelFn`. `$waitFn` is a function that is invoked with no arguments and is
294 that is expected to cancel the computation of a promise. It is invoked when the
305 // do something that will cancel the promise computation (e.g., close
334 the parent most ancestor that has not yet been resolved will also be
354 A fulfilled promise can be created to represent a promise that has been
371 A rejected promise can be created to represent a promise that has been
388 This library works with foreign promises that have a `then` method. This means
398 // Create a Guzzle promise that is fulfilled with a React promise.
407 Please note that wait and cancel chaining is no longer possible when forwarding
416 task queue will be automatically run to ensure that the blocking promise and
485 consumers of the promise cannot modify the value that will be eventually
489 iteratively is that you need to be able for one promise to reach into the state