All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.contentstack.sdk.CSConnectionPool Maven / Gradle / Ivy

There is a newer version: 2.0.1
Show newest version
package com.contentstack.sdk;

import okhttp3.ConnectionPool;

import java.util.concurrent.TimeUnit;

public class CSConnectionPool {

    ConnectionPool create() {
        return new ConnectionPool();
    }

    ConnectionPool create(int maxIdleConnections, long keepAliveDuration, TimeUnit timeUnit) {
        return new ConnectionPool(maxIdleConnections, keepAliveDuration, timeUnit);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy