lithium\data\source\Http::disconnect()

public method

Disconnect from socket.

Returns

boolean

Source

	public function disconnect() {
		if ($this->_isConnected && $this->connection !== null) {
			$this->_isConnected = false;
		}
		return !$this->_isConnected;
	}