You are here

public function Promise::wait in Lockr 7.3

Waits until the promise completes if possible.

Pass $unwrap as true to unwrap the result of the promise, either returning the resolved value or throwing the rejected exception.

If the promise cannot be waited on, then the promise will be rejected.

Parameters

bool $unwrap:

Return value

mixed

Throws

\LogicException if the promise has no wait function or if the promise does not settle after waiting.

Overrides PromiseInterface::wait

File

vendor/guzzlehttp/promises/src/Promise.php, line 60

Class

Promise
Promises/A+ implementation that avoids recursion when possible.

Namespace

GuzzleHttp\Promise

Code

public function wait($unwrap = true) {
  $this
    ->waitIfPending();
  $inner = $this->result instanceof PromiseInterface ? $this->result
    ->wait($unwrap) : $this->result;
  if ($unwrap) {
    if ($this->result instanceof PromiseInterface || $this->state === self::FULFILLED) {
      return $inner;
    }
    else {

      // It's rejected so "unwrap" and throw an exception.
      throw exception_for($inner);
    }
  }
}