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

io.ably.lib.network.OkHttpWebSocketEngineFactory Maven / Gradle / Ivy

There is a newer version: 1.2.48
Show newest version
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