close() public method

close the socket
public close ( ) : void
return void
コード例 #1
0
ファイル: SimpleConsumer.php プロジェクト: efisuby/kafka-php
 /**
  * Close the connection
  *
  * @return void
  */
 public function close()
 {
     if (null !== $this->socket) {
         $this->socket->close();
     }
 }