shutdown() public method

public shutdown ( )
Esempio n. 1
0
 /**
  * @deprecated
  *
  * @param SourceInterface $interface
  */
 public function removeInterface(SourceInterface $interface)
 {
     $interface->shutdown();
     $this->network->unregisterInterface($interface);
 }
Esempio n. 2
0
 /**
  * @param SourceInterface $interface
  */
 public function removeInterface(SourceInterface $interface)
 {
     $interface->shutdown();
     unset($this->interfaces[spl_object_hash($interface)]);
 }