com.bybit.api.client.websocket.httpclient.WebSocketStreamHttpClientSingleton Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bybit-java-api Show documentation
Show all versions of bybit-java-api Show documentation
The Official Java API connector for Bybit's HTTP and WebSocket APIs.
Dive into a plethora of functionalities:
- Market Data Retrieval
- Trade Execution
- Position Management
- Account and Asset Info Retrieval
- User and Upgrade Management
— Public Websocket Streaming
- Private Websocket Streaming
- Lending Institution and Client
- Broker Earning Data
The newest version!
package com.bybit.api.client.websocket.httpclient;
import lombok.Getter;
import okhttp3.OkHttpClient;
import okhttp3.Request;
import okhttp3.WebSocket;
import okhttp3.WebSocketListener;
import static com.bybit.api.client.log.Slf4jLoggingInterceptor.HandleLoggingInterceptor;
@Getter
public final class WebSocketStreamHttpClientSingleton {
private final boolean debugMode;
private final String logOption;
private WebSocketStreamHttpClientSingleton(boolean debugMode, String logOption) {
this.debugMode = debugMode;
this.logOption = logOption;
}
public static WebSocketStreamHttpClientSingleton createInstance(boolean debugMode, String logOption) {
return new WebSocketStreamHttpClientSingleton(debugMode, logOption);
}
public OkHttpClient createOkHttpClient(boolean debugMode, String logOption) {
OkHttpClient.Builder clientBuilder = new OkHttpClient.Builder();
if (debugMode) {
HandleLoggingInterceptor(clientBuilder, logOption);
}
return clientBuilder.build();
}
public WebSocket createWebSocket(String url, WebSocketListener listener) {
Request request = new Request.Builder().url(url).build();
OkHttpClient okHttpClient = createOkHttpClient(debugMode, logOption);
return okHttpClient.newWebSocket(request, listener);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy