use of org.apache.http.conn.OperatedClientConnection in project jmeter by apache.
the class ManagedClientConnectionImpl method flush.
@Override
public void flush() throws IOException {
final OperatedClientConnection conn = ensureConnection();
conn.flush();
}
use of org.apache.http.conn.OperatedClientConnection in project XobotOS by xamarin.
the class AbstractClientConnAdapter method getRemotePort.
// non-javadoc, see interface HttpInetConnection
public int getRemotePort() {
OperatedClientConnection conn = getWrappedConnection();
assertValid(conn);
return conn.getRemotePort();
}
use of org.apache.http.conn.OperatedClientConnection in project XobotOS by xamarin.
the class AbstractClientConnAdapter method getLocalAddress.
// non-javadoc, see interface HttpInetConnection
public InetAddress getLocalAddress() {
OperatedClientConnection conn = getWrappedConnection();
assertValid(conn);
return conn.getLocalAddress();
}
use of org.apache.http.conn.OperatedClientConnection in project XobotOS by xamarin.
the class AbstractClientConnAdapter method flush.
// non-javadoc, see interface HttpClientConnection
public void flush() throws IOException {
assertNotAborted();
OperatedClientConnection conn = getWrappedConnection();
assertValid(conn);
conn.flush();
}
use of org.apache.http.conn.OperatedClientConnection in project XobotOS by xamarin.
the class AbstractClientConnAdapter method isResponseAvailable.
// non-javadoc, see interface HttpClientConnection
public boolean isResponseAvailable(int timeout) throws IOException {
assertNotAborted();
OperatedClientConnection conn = getWrappedConnection();
assertValid(conn);
return conn.isResponseAvailable(timeout);
}
Aggregations