コード例 #1
0
ファイル: ReactLoop.php プロジェクト: khelle/surume
 /**
  * @override
  */
 public function addReadStream($stream, callable $listener)
 {
     $this->loop->addReadStream($stream, $listener);
 }
コード例 #2
0
ファイル: ZmqSocket.php プロジェクト: khelle/surume
 /**
  *
  */
 public function attachReadListener()
 {
     $this->loop->addReadStream($this->fd, [$this, 'handleEvent']);
 }