コード例 #1
0
ファイル: WampServer.php プロジェクト: netconstructor/Ratchet
 /**
  * {@inheritdoc}
  */
 public function onOpen(ConnectionInterface $conn)
 {
     $decor = new WampConnection($conn);
     $this->connections->attach($conn, $decor);
     $this->_decorating->onOpen($decor);
 }
コード例 #2
0
ファイル: TopicManager.php プロジェクト: unkerror/Budabot
 /**
  * {@inheritdoc}
  */
 public function onOpen(ConnectionInterface $conn)
 {
     $conn->WAMP->subscriptions = new \SplObjectStorage();
     $this->app->onOpen($conn);
 }