Kraken\Loop\LoopModelInterface::cancelTimer PHP 메소드

cancelTimer() 공개 메소드

Cancel a pending timer.
public cancelTimer ( Kraken\Loop\Timer\TimerInterface $timer )
$timer Kraken\Loop\Timer\TimerInterface
    public function cancelTimer(TimerInterface $timer);

Usage Example

예제 #1
0
 /**
  * @override
  * @inheritDoc
  */
 public function cancel()
 {
     if (isset($this->loop)) {
         $this->loop->cancelTimer($this);
     }
 }
All Usage Examples Of Kraken\Loop\LoopModelInterface::cancelTimer