ForwardStreamState enum
Media stream relaying status
Values
- idle → const ForwardStreamState
-
No stream relaying.
- After RTCRoom.stopForwardStreamToRooms is called, all target rooms are in this status.
- When number of target rooms is reduced by calling RTCRoom.updateForwardStreamToRooms, the target room for this reduction is in this status.
- success → const ForwardStreamState
-
Relaying started.
- Calling RTCRoom.startForwardStreamToRooms to successfully start relaying media stream to all rooms will have this status returned.
- Calling RTCRoom.updateForwardStreamToRooms to successfully started relaying media stream to the new target rooms will have this status returned.
- failure → const ForwardStreamState
-
relaying failed, see ForwardStreamError for details.
This status will be called back in case of relaying failure after calling RTCRoom.startForwardStreamToRooms or RTCRoom.updateForwardStreamToRooms.
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Constants
-
values
→ const List<
ForwardStreamState> - A constant List of the values in this enum, in order of their declaration.