io.ably.lib.network.DefaultHttpEngineFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of network-client-default Show documentation
Show all versions of network-client-default Show documentation
Default implementation for HTTP client
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