close() public method

Close transport
public close ( )
コード例 #1
0
ファイル: AbstractSession.php プロジェクト: binaek89/Thruway
 /**
  * Process Shutdown session
  */
 public function shutdown()
 {
     // we want to immediately remove
     // all references
     $this->onClose();
     $this->transport->close();
 }
コード例 #2
0
ファイル: Connection.php プロジェクト: pacho104/redbpim
 /**
  * Starts the close sequence
  */
 public function close()
 {
     $this->client->setAttemptRetry(false);
     $this->transport->close();
 }