shutdown() public method

public shutdown ( )
コード例 #1
0
ファイル: Server.php プロジェクト: ZenaGamingsky/PocketBox
 /**
  * @deprecated
  *
  * @param SourceInterface $interface
  */
 public function removeInterface(SourceInterface $interface)
 {
     $interface->shutdown();
     $this->network->unregisterInterface($interface);
 }
コード例 #2
0
ファイル: Server.php プロジェクト: hlogeon/PocketMineJs-MP
 /**
  * @param SourceInterface $interface
  */
 public function removeInterface(SourceInterface $interface)
 {
     $interface->shutdown();
     unset($this->interfaces[spl_object_hash($interface)]);
 }