- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
18 lines
437 B
Java
18 lines
437 B
Java
package okhttp3;
|
|
|
|
import java.util.concurrent.TimeUnit;
|
|
import okhttp3.internal.connection.RealConnectionPool;
|
|
|
|
/* loaded from: classes5.dex */
|
|
public final class ConnectionPool {
|
|
public final RealConnectionPool delegate;
|
|
|
|
public ConnectionPool() {
|
|
this(5, 5L, TimeUnit.MINUTES);
|
|
}
|
|
|
|
public ConnectionPool(int i, long j, TimeUnit timeUnit) {
|
|
this.delegate = new RealConnectionPool(i, j, timeUnit);
|
|
}
|
|
}
|