コード例 #1
0
 /**
  * Start the application
  *
  * @param string $address The listen socket address
  */
 public function start($address, $localCert = null)
 {
     if (isset($localCert)) {
         $this->server->setSocketContextOption('ssl', 'local_cert', $localCert);
     }
     // $client->on('listening', ...);
     $this->server->on('clientconnect', [$this, 'onClientConnect']);
     // $client->on('clientremove', ...);
     // $client->on('close', ...);
     $this->server->start($address);
 }