obs-websocket-java
obs-websocket-java copied to clipboard
A java library for https://github.com/obsproject/obs-websocket
# Describe the bug OutputNotPaused is missing in the request status code enum. Also, the codes after OutputPaused are wrong. # Expected behavior ```java OutputRunning(500), OutputNotRunning(501), OutputPaused(502), //OutputNotPaused(503) is missing...
# Describe the bug Lifecycle callbacks should be called in separate threads # Code Sample Simply add a Lifecycle callback when setting up the OBSRemoteController. # Expected behavior In order...
# Describe the bug Websocket Client in Jetty 9.X is without Community Support. See: https://github.com/eclipse/jetty.project/issues/7958 Continuing to use Jetty 9.4 produces conflicts with other libraries that are using current Jetty...
# Describe the bug Registering the same Event twice results in the first one being forgotten # Code Sample ```java OBSRemoteController.builder() //... .registerEventListener(CurrentSceneCollectionChangedEvent.class, currentSceneCollectionChangedEvent -> System.out.println("First")) .registerEventListener(CurrentSceneCollectionChangedEvent.class, currentSceneCollectionChangedEvent -> System.out.println("Second"))...
# Describe the bug Documentation says that clients shouldn't send requests during a Scene Colection Change # Expected behavior Invoke onError Callback upon `CurrentSceneCollectionChanging` Event until receiving `CurrentSceneCollectionChanged` Event #...
# Describe the bug Message Generator relies on client to compile. It also cleans and replaces the classes in client module directly. # Code Sample ```java // give a code...
# Describe the bug The logging facility in Jetty was never mean to be used directly but somehow it was used in `io.obswebsocket.community.client.OBSRemoteControllerBuilder`. Since the Jetty team removed this entire...