コード例 #1
0
ファイル: Server.php プロジェクト: clue/socket-react
 public function handleConnection(RawSocket $clientSocket)
 {
     $clientSocket->setBlocking(false);
     $client = $this->createConnection($clientSocket);
     $this->emit('connection', array($client));
 }