You are here

public function Promise::__construct in Lockr 7.3

Parameters

callable $waitFn Fn that when invoked resolves the promise.:

callable $cancelFn Fn that when invoked cancels the promise.:

File

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

Class

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

Namespace

GuzzleHttp\Promise

Code

public function __construct(callable $waitFn = null, callable $cancelFn = null) {
  $this->waitFn = $waitFn;
  $this->cancelFn = $cancelFn;
}