io.ably.lib.network.OkHttpWebSocketEngineFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of network-client-okhttp Show documentation
Show all versions of network-client-okhttp Show documentation
Default implementation for HTTP client
package io.ably.lib.network;
public class OkHttpWebSocketEngineFactory implements WebSocketEngineFactory {
@Override
public WebSocketEngine create(WebSocketEngineConfig config) {
return new OkHttpWebSocketEngine(config);
}
@Override
public EngineType getEngineType() {
return EngineType.OKHTTP;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy