CaptureSessionMode enum

Specifies the capture session mode used by the media mixer.

This enum defines how capture sessions are managed:

  • single: Uses a single capture session. This is the default mode and is suitable for most use cases where only one input source is required.
  • multi: Uses multiple capture sessions simultaneously. This mode enables handling multiple input sources independently.
  • manual: Uses a manually managed capture session. This mode allows the application to control the capture session lifecycle and configuration.
Inheritance

Constructors

CaptureSessionMode()
const

Values

single → const CaptureSessionMode

Uses a single capture session.

multi → const CaptureSessionMode

Uses multiple capture sessions.

manual → const CaptureSessionMode

Uses a manually managed capture session.

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

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<CaptureSessionMode>
A constant List of the values in this enum, in order of their declaration.