participantsId$

View as MarkdownOpen in Claude
get protected participantsId$(): Observable<string[]>

Protected internal observable that emits the list of participant IDs currently in the call. Prefer participants$ (which emits the full CallParticipant objects) for application code.

Examples

// Within subclasses of WebRTCCall:
this.participantsId$.subscribe((ids) => {
console.log('participant IDs:', ids);
});

See

  • participants$ — the public counterpart with full participant objects.