本文整理汇总了Java中com.squareup.okhttp.Connection.getRoute方法的典型用法代码示例。如果您正苦于以下问题:Java Connection.getRoute方法的具体用法?Java Connection.getRoute怎么用?Java Connection.getRoute使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.squareup.okhttp.Connection
的用法示例。
在下文中一共展示了Connection.getRoute方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: connectFailed
import com.squareup.okhttp.Connection; //导入方法依赖的package包/类
/**
* Clients should invoke this method when they encounter a connectivity
* failure on a connection returned by this route selector.
*/
public void connectFailed(Connection connection, IOException failure) {
Route failedRoute = connection.getRoute();
if (failedRoute.getProxy().type() != Proxy.Type.DIRECT && proxySelector != null) {
// Tell the proxy selector when we fail to connect on a fresh connection.
proxySelector.connectFailed(uri, failedRoute.getProxy().address(), failure);
}
routeDatabase.failed(failedRoute, failure);
}
示例2: connectFailed
import com.squareup.okhttp.Connection; //导入方法依赖的package包/类
/**
* Clients should invoke this method when they encounter a connectivity
* failure on a connection returned by this route selector.
*/
public void connectFailed(Connection connection, IOException failure) {
Route failedRoute = connection.getRoute();
if (failedRoute.getProxy().type() != Proxy.Type.DIRECT && proxySelector != null) {
// Tell the proxy selector when we fail to connect on a fresh connection.
proxySelector.connectFailed(uri, failedRoute.getProxy().address(), failure);
}
routeDatabase.failed(failedRoute, failure);
}
示例3: execute
import com.squareup.okhttp.Connection; //导入方法依赖的package包/类
private boolean execute(boolean readResponse) throws IOException {
IOException toThrow;
HttpEngine retryEngine;
boolean z = false;
try {
this.httpEngine.sendRequest();
Connection connection = this.httpEngine.getConnection();
if (connection != null) {
this.route = connection.getRoute();
this.handshake = connection.getHandshake();
} else {
this.route = null;
this.handshake = null;
}
if (readResponse) {
this.httpEngine.readResponse();
}
z = true;
if (false) {
this.httpEngine.close().release();
}
} catch (RequestException e) {
toThrow = e.getCause();
this.httpEngineFailure = toThrow;
throw toThrow;
} catch (RouteException e2) {
retryEngine = this.httpEngine.recover(e2);
if (retryEngine != null) {
this.httpEngine = retryEngine;
if (false) {
this.httpEngine.close().release();
}
} else {
toThrow = e2.getLastConnectException();
this.httpEngineFailure = toThrow;
throw toThrow;
}
} catch (IOException e3) {
retryEngine = this.httpEngine.recover(e3);
if (retryEngine != null) {
this.httpEngine = retryEngine;
if (false) {
this.httpEngine.close().release();
}
} else {
this.httpEngineFailure = e3;
throw e3;
}
} catch (Throwable th) {
if (true) {
this.httpEngine.close().release();
}
}
return z;
}