id property
The unique identifier for the publish request.
- This
id
is assigned exclusively by the SFU. Anyid
set by the client in thePublishOption
will be ignored and overwritten by the SFU. - The primary purpose of this
id
is to uniquely identify each publish request, even in scenarios where multiple publish requests for the sametrack_type
andcodec
are active simultaneously. For example:- A user may publish two tracks of the same type (e.g., video) and codec (e.g., VP9) concurrently.
- This uniqueness ensures that individual requests can be managed
independently. For instance, an
id
is critical when stopping a specific publish request without affecting others.
Implementation
@$pb.TagNumber(8)
$core.int get id => $_getIZ(7);
Implementation
@$pb.TagNumber(8)
set id($core.int v) {
$_setSignedInt32(7, v);
}