Class GetRecordingStatus.Response
- java.lang.Object
-
- nl.harm27.obs.websocket.api.base.BaseResponse
-
- nl.harm27.obs.websocket.api.requests.recording.GetRecordingStatus.Response
-
- Enclosing class:
- GetRecordingStatus
public static class GetRecordingStatus.Response extends BaseResponse
-
-
Constructor Summary
Constructors Constructor Description Response()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Optional<String>
getRecordingFilename()
Absolute path to the recording file (only present if currently recording).Optional<String>
getRecordTimecode()
Time elapsed since recording started (only present if currently recording).boolean
isIsRecording()
Current recording status.boolean
isIsRecordingPaused()
Whether the recording is paused or not.-
Methods inherited from class nl.harm27.obs.websocket.api.base.BaseResponse
getError, getMessageId, getStatus
-
-
-
-
Method Detail
-
isIsRecording
public boolean isIsRecording()
Current recording status.
-
isIsRecordingPaused
public boolean isIsRecordingPaused()
Whether the recording is paused or not.
-
getRecordTimecode
public Optional<String> getRecordTimecode()
Time elapsed since recording started (only present if currently recording).
-
-