echoCancellation$

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

Observable indicating whether echo cancellation is enabled.

Inherited from

Participant.echoCancellation$

echoCancellation

get echoCancellation(): boolean

Whether echo cancellation is enabled.

Inherited from

Participant.echoCancellation

Examples

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