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 void
callEvent(BaseEvent baseEvent)
List<EventType>
getSupportedEvents()
void
replayStarted(ReplayStarted replayStarted)
Replay Buffer started successfullyvoid
replayStarting(ReplayStarting replayStarting)
A request to start the replay buffer has been issued.void
replayStopped(ReplayStopped replayStopped)
Replay Buffer stopped successfullyvoid
replayStopping(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:
callEvent
in interfaceEventListener
-
getSupportedEvents
public final List<EventType> getSupportedEvents()
- Specified by:
getSupportedEvents
in interfaceEventListener
-
-