Lines Matching refs:canceller
7 private $canceller;
16 public function __construct(callable $resolver, callable $canceller = null)
18 $this->canceller = $canceller;
24 $resolver = $canceller = null;
34 if (null === $this->canceller) {
38 // This promise has a canceller, so we create a new child promise which
39 // has a canceller that invokes the parent canceller if all other
41 // instance for the static canceller function and clear this to avoid
105 if (null === $this->canceller || null !== $this->result) {
109 $canceller = $this->canceller;
110 $this->canceller = null;
112 $this->call($canceller);
165 $this->canceller = null;