当前位置: 首页>>代码示例>>Java>>正文


Java Connection.getRoute方法代码示例

本文整理汇总了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);
}
 
开发者ID:aabognah,项目名称:LoRaWAN-Smart-Parking,代码行数:14,代码来源:RouteSelector.java

示例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);
}
 
开发者ID:goodev,项目名称:android-discourse,代码行数:14,代码来源:RouteSelector.java

示例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;
}
 
开发者ID:JackChan1999,项目名称:boohee_v5.6,代码行数:56,代码来源:HttpURLConnectionImpl.java


注:本文中的com.squareup.okhttp.Connection.getRoute方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。