erase() public method

Flush loop.
public erase ( boolean $all = false ) : Kraken\Loop\LoopModelInterface
$all boolean
return Kraken\Loop\LoopModelInterface
Example #1
0
 /**
  * @override
  * @inheritDoc
  */
 public function erase($all = false)
 {
     $this->loop->erase($all);
     return $this;
 }
Example #2
0
 /**
  * @dataProvider loopsProvider
  * @param LoopExtendedInterface|LoopModelInterface|mixed $loop
  */
 public function testApiFlush_FlushesAllHandlers_WhenAllFlagSetToTrue($loop)
 {
     $stream = $this->createStream();
     $loop->onAfterTick($this->expectCallableNever());
     $loop->onBeforeTick($this->expectCallableNever());
     $loop->addWriteStream($stream, $this->expectCallableNever());
     $loop->addReadStream($stream, $this->expectCallableNever());
     $loop->erase(true);
     $loop->tick();
     unset($stream);
     unset($loop);
 }