RtcDataChannel class
- Inheritance
- Object
- EventTarget
- RtcDataChannel
- Annotations
- @Native.new("RTCDataChannel,DataChannel")
Properties
- binaryType↔String?
- getter/setter pair
- bufferedAmount→int?
- no setter
- bufferedAmountLowThreshold↔int?
- getter/setter pair
- hashCode→int
- The hash code for this object.no setterinherited
- id→int?
- no setter
- label→String?
- no setter
- maxRetransmits→int?
- no setter
- maxRetransmitTime→int?
- no setter
- negotiated→bool?
- no setter
- on→Events
- This is an ease-of-use accessor for event streams which should only beused when an explicit accessor is not available.no setterinherited
- onClose→Stream<
Event> - Stream of
closeevents handled by thisRtcDataChannel.no setter - onError→Stream<
Event> - Stream of
errorevents handled by thisRtcDataChannel.no setter - onMessage→Stream<
MessageEvent> - Stream of
messageevents handled by thisRtcDataChannel.no setter - onOpen→Stream<
Event> - Stream of
openevents handled by thisRtcDataChannel.no setter - ordered→bool?
- no setter
- protocol→String?
- no setter
- readyState→String?
- no setter
- reliable→bool?
- no setter
- runtimeType→Type
- A representation of the runtime type of the object.no setterinherited
Methods
- addEventListener(
Stringtype,EventListener?listener, [bool?useCapture])→ void - inherited
- close(
)→ void - dispatchEvent(
Eventevent)→bool - inherited
- noSuchMethod(
Invocationinvocation)→ dynamic - Invoked when a nonexistent method or property is accessed.inherited
- removeEventListener(
Stringtype,EventListener?listener, [bool?useCapture])→ void - inherited
- send(
dynamicdata)→ void - sendBlob(
Blobdata)→ void - sendByteBuffer(
ByteBufferdata)→ void - sendString(
Stringdata)→ void - sendTypedData(
TypedDatadata)→ void - toString(
)→String - A string representation of this object.inherited
Operators
- operator ==(
Objectother)→bool - The equality operator.inherited
Constants
- closeEvent→ constEventStreamProvider<
Event> - Static factory designed to expose
closeevents to eventhandlers that are not necessarily instances ofRtcDataChannel. - errorEvent→ constEventStreamProvider<
Event> - Static factory designed to expose
errorevents to eventhandlers that are not necessarily instances ofRtcDataChannel. - messageEvent→ constEventStreamProvider<
MessageEvent> - Static factory designed to expose
messageevents to eventhandlers that are not necessarily instances ofRtcDataChannel. - openEvent→ constEventStreamProvider<
Event> - Static factory designed to expose
openevents to eventhandlers that are not necessarily instances ofRtcDataChannel.