Class DefaultOkHttpClientConnectionPoolFactory
- java.lang.Object
-
- org.springframework.cloud.commons.httpclient.DefaultOkHttpClientConnectionPoolFactory
-
- All Implemented Interfaces:
OkHttpClientConnectionPoolFactory
public class DefaultOkHttpClientConnectionPoolFactory extends Object implements OkHttpClientConnectionPoolFactory
Default implementation ofOkHttpClientConnectionPoolFactory.- Author:
- Ryan Baxter
-
-
Constructor Summary
Constructors Constructor Description DefaultOkHttpClientConnectionPoolFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description okhttp3.ConnectionPoolcreate(int maxIdleConnections, long keepAliveDuration, TimeUnit timeUnit)Creates a newConnectionPool.
-
-
-
Method Detail
-
create
public okhttp3.ConnectionPool create(int maxIdleConnections, long keepAliveDuration, TimeUnit timeUnit)Description copied from interface:OkHttpClientConnectionPoolFactoryCreates a newConnectionPool.- Specified by:
createin interfaceOkHttpClientConnectionPoolFactory- Parameters:
maxIdleConnections- Number of max idle connections to allow.keepAliveDuration- Amount of time to keep connections alive.timeUnit- The time unit for the keep-alive duration.- Returns:
- A new
ConnectionPool.
-
-