Search in sources :

Example 6 with OperatedClientConnection

use of org.apache.http.conn.OperatedClientConnection in project XobotOS by xamarin.

the class AbstractClientConnAdapter method getSocketTimeout.

// non-javadoc, see interface HttpConnection
public int getSocketTimeout() {
    OperatedClientConnection conn = getWrappedConnection();
    assertValid(conn);
    return conn.getSocketTimeout();
}
Also used : OperatedClientConnection(org.apache.http.conn.OperatedClientConnection)

Example 7 with OperatedClientConnection

use of org.apache.http.conn.OperatedClientConnection in project XobotOS by xamarin.

the class AbstractClientConnAdapter method sendRequestEntity.

// non-javadoc, see interface HttpClientConnection
public void sendRequestEntity(HttpEntityEnclosingRequest request) throws HttpException, IOException {
    assertNotAborted();
    OperatedClientConnection conn = getWrappedConnection();
    assertValid(conn);
    unmarkReusable();
    conn.sendRequestEntity(request);
}
Also used : OperatedClientConnection(org.apache.http.conn.OperatedClientConnection)

Example 8 with OperatedClientConnection

use of org.apache.http.conn.OperatedClientConnection in project robovm by robovm.

the class AbstractClientConnAdapter method getLocalAddress.

// non-javadoc, see interface HttpInetConnection
public InetAddress getLocalAddress() {
    OperatedClientConnection conn = getWrappedConnection();
    assertValid(conn);
    return conn.getLocalAddress();
}
Also used : OperatedClientConnection(org.apache.http.conn.OperatedClientConnection)

Example 9 with OperatedClientConnection

use of org.apache.http.conn.OperatedClientConnection in project robovm by robovm.

the class AbstractClientConnAdapter method sendRequestHeader.

// non-javadoc, see interface HttpClientConnection
public void sendRequestHeader(HttpRequest request) throws HttpException, IOException {
    assertNotAborted();
    OperatedClientConnection conn = getWrappedConnection();
    assertValid(conn);
    unmarkReusable();
    conn.sendRequestHeader(request);
}
Also used : OperatedClientConnection(org.apache.http.conn.OperatedClientConnection)

Example 10 with OperatedClientConnection

use of org.apache.http.conn.OperatedClientConnection in project robovm by robovm.

the class AbstractClientConnAdapter method getMetrics.

// non-javadoc, see interface HttpConnection
public HttpConnectionMetrics getMetrics() {
    OperatedClientConnection conn = getWrappedConnection();
    assertValid(conn);
    return conn.getMetrics();
}
Also used : OperatedClientConnection(org.apache.http.conn.OperatedClientConnection)

Aggregations

OperatedClientConnection (org.apache.http.conn.OperatedClientConnection)61 InterruptedIOException (java.io.InterruptedIOException)5 IOException (java.io.IOException)4 Socket (java.net.Socket)4 SSLSession (javax.net.ssl.SSLSession)4 SSLSocket (javax.net.ssl.SSLSocket)4 RouteTracker (org.apache.http.conn.routing.RouteTracker)4 ConnectionShutdownException (org.apache.http.impl.conn.ConnectionShutdownException)4 HttpHost (org.apache.http.HttpHost)3