RTCDataChannelEvent

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since January 2020.

RTCDataChannelEvent インターフェイスは、特定の RTCPeerConnection に関連するイベントを表します。

Event RTCDataChannelEvent

コンストラクター

RTCDataChannelEvent()

新しい RTCDataChannelEvent を作成します。

インスタンスプロパティ

Event のプロパティを継承しています。

channel 読取専用

このイベントに関連付けられた RTCDataChannel を返します。

この例では、 datachannel イベントハンドラーを設定して、データチャンネルの参照を保存し、監視する必要があるイベントのハンドラーを設定しています。 channel プロパティは、他にもピアへの接続を表す RTCDataChannel を提供しています。

js
pc.ondatachannel = (event) => {
  inboundDataChannel = event.channel;
  inboundDataChannel.onmessage = handleIncomingMessage;
  inboundDataChannel.onopen = handleChannelOpen;
  inboundDataChannel.onclose = handleChannelClose;
};

データチャンネルを使用する、より完全な別の例は、単純な RTCDataChannel の例を参照してください。

仕様書

Specification
WebRTC: Real-Time Communication in Browsers
# rtcdatachannelevent

ブラウザーの互換性

BCD tables only load in the browser

関連情報