コード例 #1
0
ファイル: Client.php プロジェクト: timenz/elephant.io
 /**
  * Reads a message from the socket
  *
  * @return MessageInterface Message read from the socket
  */
 public function read()
 {
     $this->logger->debug('Reading a new message from the socket');
     return $this->engine->read();
 }
コード例 #2
0
ファイル: Client.php プロジェクト: jgao18/PokerRoom
 /**
  * Reads a message from the socket
  *
  * @return MessageInterface Message read from the socket
  */
 public function read()
 {
     return $this->engine->read();
 }