PHPDaemon\Core\CallbackWrapper::cancelTimeout PHP Method

cancelTimeout() public method

public cancelTimeout ( )
    public function cancelTimeout()
    {
        if ($this->timer !== null) {
            Timer::remove($this->timer);
            $this->timer = null;
        }
    }