lithium\net\socket\Context::eof()

public method

End of file test for this socket connection. Does not apply to this implementation.

Returns

boolean

Success.

Source

	public function eof() {
		if (!is_resource($this->_resource)) {
			return true;
		}
		return feof($this->_resource);
	}