clearTopology() 공개 메소드

Reset any previously gathered speaker information.
public clearTopology ( ) : static
리턴 static
예제 #1
0
 /**
  * Removes the specified speaker from the group of this Controller.
  *
  * @param Speaker $speaker The speaker to remove from the group
  *
  * @return static
  */
 public function removeSpeaker(Speaker $speaker)
 {
     $speaker->soap("AVTransport", "BecomeCoordinatorOfStandaloneGroup");
     $this->network->clearTopology();
     return $this;
 }