Package nl.harm27.obswebsocket.listener
Class ScenesEventListener
- java.lang.Object
-
- nl.harm27.obswebsocket.listener.ScenesEventListener
-
- All Implemented Interfaces:
EventListener
public abstract class ScenesEventListener extends Object implements EventListener
The EventListener for the events that are part of the Scenes category.
-
-
Constructor Summary
Constructors Constructor Description ScenesEventListener()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcallEvent(BaseEvent baseEvent)Map<EventType,Class<?>>getSupportedEvents()voidsceneCollectionChanged(SceneCollectionChanged sceneCollectionChanged)Implement this method to process SceneCollectionChanged events.voidsceneCollectionListChanged(SceneCollectionListChanged sceneCollectionListChanged)Implement this method to process SceneCollectionListChanged events.voidscenesChanged(ScenesChanged scenesChanged)Implement this method to process ScenesChanged events.voidswitchScenes(SwitchScenes switchScenes)Implement this method to process SwitchScenes events.
-
-
-
Method Detail
-
getSupportedEvents
public final Map<EventType,Class<?>> getSupportedEvents()
- Specified by:
getSupportedEventsin interfaceEventListener
-
callEvent
public final void callEvent(BaseEvent baseEvent)
- Specified by:
callEventin interfaceEventListener
-
switchScenes
public void switchScenes(SwitchScenes switchScenes)
Implement this method to process SwitchScenes events.- Parameters:
switchScenes- The received event.
-
scenesChanged
public void scenesChanged(ScenesChanged scenesChanged)
Implement this method to process ScenesChanged events.- Parameters:
scenesChanged- The received event.
-
sceneCollectionChanged
public void sceneCollectionChanged(SceneCollectionChanged sceneCollectionChanged)
Implement this method to process SceneCollectionChanged events.- Parameters:
sceneCollectionChanged- The received event.
-
sceneCollectionListChanged
public void sceneCollectionListChanged(SceneCollectionListChanged sceneCollectionListChanged)
Implement this method to process SceneCollectionListChanged events.- Parameters:
sceneCollectionListChanged- The received event.
-
-