다음을 통해 공유


RemoteDiagnostics interface

참고

이 API은(는) 베타에 있으며 개발자를 위한 미리 보기로 제공되며 수신한 피드백을 기반으로 변경될 수 있습니다. 프로덕션 환경에서 이 API를 사용하지 마세요.

원격 진단

메서드

getLatest()

알려진 최신 원격 진단 가져오기

off("diagnosticChanged", (args: RemoteParticipantDiagnosticsData) => void)

diagnosticChanged 이벤트에 대한 구독 취소 함수

on("diagnosticChanged", (args: RemoteParticipantDiagnosticsData) => void)

diagnosticChanged 이벤트에 대한 Subscribe 함수

메서드 세부 정보

getLatest()

알려진 최신 원격 진단 가져오기

function getLatest(): RemoteParticipantDiagnosticsData

반환

off("diagnosticChanged", (args: RemoteParticipantDiagnosticsData) => void)

diagnosticChanged 이벤트에 대한 구독 취소 함수

function off(event: "diagnosticChanged", listener: (args: RemoteParticipantDiagnosticsData) => void)

매개 변수

event

"diagnosticChanged"

이벤트 이름

listener

(args: RemoteParticipantDiagnosticsData) => void

이 이벤트를 구독 취소하는 데 사용된 콜백 fn

on("diagnosticChanged", (args: RemoteParticipantDiagnosticsData) => void)

diagnosticChanged 이벤트에 대한 Subscribe 함수

function on(event: "diagnosticChanged", listener: (args: RemoteParticipantDiagnosticsData) => void)

매개 변수

event

"diagnosticChanged"

이벤트 이름

listener

(args: RemoteParticipantDiagnosticsData) => void

진단이 변경될 때 호출되는 콜백 fn