Timer::clearTimeout PHP Method

clearTimeout() public method

public clearTimeout ( $timerid )
    public function clearTimeout($timerid)
    {
        return swoole_timer_clear($timerid);
    }

Usage Example

Exemplo n.º 1
0
 public function onFinish()
 {
     if ($this->timer) {
         Timer::clearTimeout($this->timer);
         $this->timer = null;
     }
 }