RemoteDiagnostics interface
注意
この API はベータ版で、開発者向けにプレビューとして提供されており、寄せられたフィードバックに基づいて変更される場合があります。 この API は運用環境で使用しないでください。
リモート診断
メソッド
get |
最新の既知のリモート診断を取得する |
off("diagnostic |
diagnosticChanged イベントの Unsubscribe 関数 |
on("diagnostic |
diagnosticChanged イベントのサブスクライブ関数 |
メソッドの詳細
getLatest()
最新の既知のリモート診断を取得する
function getLatest(): RemoteParticipantDiagnosticsData
戻り値
off("diagnosticChanged", (args: RemoteParticipantDiagnosticsData) => void)
diagnosticChanged イベントの Unsubscribe 関数
function off(event: "diagnosticChanged", listener: (args: RemoteParticipantDiagnosticsData) => void)
パラメーター
- event
-
"diagnosticChanged"
イベント名
- listener
-
(args: RemoteParticipantDiagnosticsData) => void
このイベントのサブスクライブを解除するために使用されたコールバック fn
on("diagnosticChanged", (args: RemoteParticipantDiagnosticsData) => void)
diagnosticChanged イベントのサブスクライブ関数
function on(event: "diagnosticChanged", listener: (args: RemoteParticipantDiagnosticsData) => void)
パラメーター
- event
-
"diagnosticChanged"
イベント名
- listener
-
(args: RemoteParticipantDiagnosticsData) => void
診断が変更されたときに呼び出されるコールバック fn