com.binance.connector.client.utils.HttpClientSingleton Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of binance-connector-java Show documentation
Show all versions of binance-connector-java Show documentation
lightweight connector to API
package com.binance.connector.client.utils;
import okhttp3.OkHttpClient;
public class HttpClientSingleton {
private static final OkHttpClient httpClient = new OkHttpClient();
private HttpClientSingleton() {
}
public static final OkHttpClient getHttpClient() {
return httpClient;
}
}