Kraken\Loop\LoopInterface::cancelTimer PHP Method

cancelTimer() public method

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
ファイル: ReactLoop.php プロジェクト: kraken-php/framework
 /**
  * @override
  * @inheritDoc
  */
 public function cancelTimer(\React\EventLoop\Timer\TimerInterface $timer)
 {
     $this->loop->cancelTimer($timer->getActualTimer());
 }