isTalking$

View as MarkdownOpen in Claude
get isTalking$(): Observable<boolean | undefined>

Observable indicating whether the participant is currently speaking.

Inherited from

Participant.isTalking$

isTalking

get isTalking(): boolean

Whether the participant is currently speaking.

Inherited from

Participant.isTalking

Examples

selfParticipant.isTalking$.subscribe((isTalking) => {
console.log('isTalking:', isTalking);
});