RTCDataChannelEvent
실험적: 이 기능은 실험적인 기능입니다.
프로덕션 환경에서 사용하기 전에 브라우저 호환성 표를 주의 깊게 확인하세요.
RTCDataChannelEvent()
생성자는 datachannel
을 나타내는 신규 RTCDataChannelEvent
객체를 반환합니다. 이 이벤트는 두 피어 사이에서 원격 피어가 RTCDataChannel
을 개통하도록 요청되었을때, RTCPeerConnection
에 전달됩니다.
WebRTC가 적절한 시기에 생성하고 전달해주기 때문에, RTCDataChannelEvent
를 직접 생성하는 일은 매우 드물 것입니다. RTCPeerConnection
에 의해 datachannel
이벤트가 받아지는지를 감청하고, 해당 이벤트를 받으면 RTCDataChannelEvent.channel
속성을 사용해서 개통된 데이터 채널에 대한 권한을 얻는 것이 일반적입니다.
생성자
RTCDataChannelEvent()
-
새로운
RTCDataChannelEvent
을 생성하는RTCDataChannelEvent()
생성자입니다.
속성
Event
의 속성을 상속합니다.
RTCDataChannelEvent.channel
읽기 전용-
읽기 속성인
RTCDataChannelEvent.channel
는 이벤트와 관련된 RTCDataChannel를 반환합니다.
메소드
이 인터페이스에는 메소드가 존재하지 않습니다. 대신, *Event
*의 메소드를 상속합니다.
예시
아래의 예제에서는 datachannel
이벤트 핸들러를 설정해서 데이터 채널의 참조된 정보를 저장하고, 모니터링 할 이벤트들에 대한 핸들러를 새로 설정합니다. channel
속성은 다른 피어와의 연결을 나타내는 RTCDataChannel
을 제공합니다.
pc.ondatachannel = function (event) {
inboundDataChannel = event.channel;
inboundDataChannel.onmessage = handleIncomingMessage;
inboundDataChannel.onopen = handleChannelOpen;
inboundDataChannel.onclose = handleChannelClose;
};
데이터 채널을 어떤 방식으로 사용하는지에 대한 더 좋은 예제는 A simple RTCDataChannel sample를 확인하십시오.
명세
Specification |
---|
WebRTC: Real-Time Communication in Browsers # rtcdatachannelevent |
브라우저 호환성
BCD tables only load in the browser
참조
- WebRTC
RTCDataChannel
RTCDataChannel.ondatachannel
- A simple RTCDataChannel sample
RTCPeerConnection
(the target interface fordatachannel
events)