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 64 String maxIdleConnections = System.getProperty("http.maxConnections");
69 } else if (maxIdleConnections != null) {
70 systemDefault = new ConnectionPool(Integer.parseInt(maxIdleConnections), keepAliveDurationMs);
77 private final int maxIdleConnections;
104 i.hasPrevious() && idleConnectionCount > maxIdleConnections; ) {
120 public ConnectionPool(int maxIdleConnections, long keepAliveDurationMs) {
121 this.maxIdleConnections = maxIdleConnections;

Completed in 142 milliseconds