public enum RecordingMode extends Enum<RecordingMode>
| Enum Constant and Description |
|---|
ALWAYS
The session is recorded automatically as soon as the first client publishes a
stream to the session.
|
MANUAL
The session is not recorded automatically.
|
| Modifier and Type | Method and Description |
|---|---|
static RecordingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RecordingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RecordingMode ALWAYS
OpenVidu.stopRecording(String)).public static final RecordingMode MANUAL
OpenVidu.startRecording(String) method.
To stop the recording, you must call
OpenVidu.stopRecording(String).public static RecordingMode[] values()
for (RecordingMode c : RecordingMode.values()) System.out.println(c);
public static RecordingMode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2018 OpenVidu. All rights reserved.