Package nl.harm27.obs.websocket.listener
Class ReplayBufferEventListener
- java.lang.Object
-
- nl.harm27.obs.websocket.listener.ReplayBufferEventListener
-
- All Implemented Interfaces:
EventListener
public abstract class ReplayBufferEventListener extends Object implements EventListener
The EventListener for the events that are part of the Replay buffer category.
-
-
Constructor Summary
Constructors Constructor Description ReplayBufferEventListener()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcallEvent(BaseEvent baseEvent)List<EventType>getSupportedEvents()voidreplayStarted(ReplayStarted replayStarted)Replay Buffer started successfullyvoidreplayStarting(ReplayStarting replayStarting)A request to start the replay buffer has been issued.voidreplayStopped(ReplayStopped replayStopped)Replay Buffer stopped successfullyvoidreplayStopping(ReplayStopping replayStopping)A request to stop the replay buffer has been issued.
-
-
-
Method Detail
-
replayStarting
public void replayStarting(ReplayStarting replayStarting)
A request to start the replay buffer has been issued.- Parameters:
replayStarting- The received event.- Since:
- 4.2.0
- See Also:
- OBS WebSocket Documentation
-
replayStarted
public void replayStarted(ReplayStarted replayStarted)
Replay Buffer started successfully- Parameters:
replayStarted- The received event.- Since:
- 4.2.0
- See Also:
- OBS WebSocket Documentation
-
replayStopping
public void replayStopping(ReplayStopping replayStopping)
A request to stop the replay buffer has been issued.- Parameters:
replayStopping- The received event.- Since:
- 4.2.0
- See Also:
- OBS WebSocket Documentation
-
replayStopped
public void replayStopped(ReplayStopped replayStopped)
Replay Buffer stopped successfully- Parameters:
replayStopped- The received event.- Since:
- 4.2.0
- See Also:
- OBS WebSocket Documentation
-
callEvent
public final void callEvent(BaseEvent baseEvent)
- Specified by:
callEventin interfaceEventListener
-
getSupportedEvents
public final List<EventType> getSupportedEvents()
- Specified by:
getSupportedEventsin interfaceEventListener
-
-