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

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

There is a newer version: 1.2.47
Show newest version
package io.ably.lib.network;

public class DefaultHttpEngineFactory implements HttpEngineFactory {

    @Override
    public HttpEngine create(HttpEngineConfig config) {
        return new DefaultHttpEngine(config);
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy