io.relayr.java.websocket.DebugWebSocketModule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk Show documentation
Show all versions of java-sdk Show documentation
Java SDK for connecting to the Relayr Cloud
The newest version!
package io.relayr.java.websocket;
import javax.inject.Singleton;
import dagger.Module;
import dagger.Provides;
import io.relayr.java.api.mock.MockBackend;
@Module(
complete = false,
library = true
)
public class DebugWebSocketModule {
@Provides @Singleton WebSocketFactory provideWebSocketFactory(MockBackend loader) {
return new MockWebSocketFactory(loader);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy