export() public method

Export loop not fired handlers and/or streams to another loop model.
public export ( Kraken\Loop\LoopModelInterface $loop, boolean $all = false ) : Kraken\Loop\LoopModelInterface
$loop Kraken\Loop\LoopModelInterface
$all boolean
return Kraken\Loop\LoopModelInterface
Example #1
0
 /**
  * @override
  * @inheritDoc
  */
 public function export(LoopExtendedInterface $loop, $all = false)
 {
     $this->loop->export($loop->getModel(), $all);
     return $this;
 }