HomeSort by relevance Sort by last modified time
    Searched full:maxidleconnections (Results 1 - 1 of 1) sorted by null

  /external/okhttp/src/main/java/com/squareup/okhttp/
ConnectionPool.java 49 String maxIdleConnections = System.getProperty("http.maxConnections");
54 } else if (maxIdleConnections != null) {
55 systemDefault = new ConnectionPool(Integer.parseInt(maxIdleConnections), keepAliveDurationMs);
62 private final int maxIdleConnections;
88 i.hasPrevious() && idleConnectionCount > maxIdleConnections; ) {
104 public ConnectionPool(int maxIdleConnections, long keepAliveDurationMs) {
105 this.maxIdleConnections = maxIdleConnections;

Completed in 176 milliseconds