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

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

package io.ably.lib.network;

public class DefaultWebSocketEngineFactory implements WebSocketEngineFactory {

    @Override
    public WebSocketEngine create(WebSocketEngineConfig config) {
        return new DefaultWebSocketEngine(config);
    }

    @Override
    public EngineType getEngineType() {
        return EngineType.DEFAULT;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy