React\Promise\Promise::cancel PHP Method

cancel() public method

public cancel ( )
    public function cancel()
    {
        if (null === $this->canceller || null !== $this->result) {
            return;
        }
        $canceller = $this->canceller;
        $this->canceller = null;
        $this->call($canceller);
    }