RecordingStatus

  • The RecordingStatus enum describes the current recording status.

  • It includes values like IO_ERROR, NONE, and OK to indicate the state of recording.

  • IO_ERROR signifies an issue during recording, NONE means the recorder is not active, and OK indicates normal recording operation.

public final enum RecordingStatus

Describes the current recording status.

Inherited Methods

Enum Values

IO_ERROR

public static final RecordingStatus IO_ERROR

There was an IO error while recording.

NONE

public static final RecordingStatus NONE

The recorder is not recording.

OK

public static final RecordingStatus OK

The recorder is recording normally.