PHPDaemon\Core\CallbackWrapper::cancel PHP Method

cancel() public method

Cancel
public cancel ( ) : void
return void
    public function cancel()
    {
        $this->cb = null;
        $this->context = null;
        if ($this->timer !== null) {
            Timer::remove($this->timer);
            $this->timer = null;
        }
    }