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

com.binance.connector.client.utils.httpclient.WebSocketStreamHttpClientSingleton Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
package com.binance.connector.client.utils.httpclient;

import okhttp3.OkHttpClient;

public final class WebSocketStreamHttpClientSingleton {
    private static final OkHttpClient httpClient = new OkHttpClient();

    private WebSocketStreamHttpClientSingleton() {
    }

    public static OkHttpClient getHttpClient() {
        return httpClient;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy