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 void
callEvent(BaseEvent baseEvent)
Map<EventType,Class<?>>
getSupportedEvents()
void
sceneCollectionChanged(SceneCollectionChanged sceneCollectionChanged)
Implement this method to process SceneCollectionChanged events.void
sceneCollectionListChanged(SceneCollectionListChanged sceneCollectionListChanged)
Implement this method to process SceneCollectionListChanged events.void
scenesChanged(ScenesChanged scenesChanged)
Implement this method to process ScenesChanged events.void
switchScenes(SwitchScenes switchScenes)
Implement this method to process SwitchScenes events.
-
-
-
Method Detail
-
getSupportedEvents
public final Map<EventType,Class<?>> getSupportedEvents()
- Specified by:
getSupportedEvents
in interfaceEventListener
-
callEvent
public final void callEvent(BaseEvent baseEvent)
- Specified by:
callEvent
in 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.
-
-