DataProducer class

Constructors

DataProducer({required String id, required RTCDataChannel dataChannel, required SctpStreamParameters sctpStreamParameters, required Map<String, dynamic> appData, bool closed = false})
@emits transportclose @emits open @emits error - (error: Error) @emits close @emits bufferedamountlow @emits @close

Properties

appData Map<String, dynamic>
App custom data.
final
closed bool
Closed flag.
getter/setter pair
dataChannel RTCDataChannel
The underlying RTCDataChannel instance.
final
hashCode int
The hash code for this object.
no setteroverride
id String
Id.
final
observer → EnhancedEventEmitter
Observer instance.
final
readyState RTCDataChannelState?
DataChannel readyState.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
sctpStreamParameters SctpStreamParameters
SCTP stream parameters.
final

Methods

callback(Function func, [dynamic arg0, dynamic arg1, dynamic arg2, dynamic arg3, dynamic arg4, dynamic arg5]) → dynamic
inherited
callbackAsFuture(Function func, [dynamic arg0, dynamic arg1, dynamic arg2, dynamic arg3, dynamic arg4, dynamic arg5]) Future
inherited
clearListeners() → void
This function unbinds all the handlers for all the events
inherited
close() → void
Closes the DataProducer.
emit(String event, [dynamic arg0, dynamic arg1, dynamic arg2, dynamic arg3, dynamic arg4, dynamic arg5]) → void
This function triggers all the handlers currently listening to event and passes them data.
inherited
emitAsFuture(String event, [dynamic arg0, dynamic arg1, dynamic arg2, dynamic arg3, dynamic arg4, dynamic arg5]) Future
This function triggers all the handlers currently listening to event and passes them data.
inherited
listeners(dynamic event) List
Return function list named event.
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
off(String event) → void
This function attempts to unbind all the handler from the event
inherited
on(String event, Function handler) → void
This function binds the handler as a listener to the event
inherited
once(String event, Function handler) → void
This function binds the handler as a listener to the first occurrence of the event. When handler is called once, it is removed.
inherited
remove(String event, Function handler) → void
This function attempts to unbind the handler from the event
inherited
safeEmit(String event, [Map<String, dynamic>? args]) → void
inherited
safeEmitAsFuture(String event, [Map<String, dynamic>? args]) Future
inherited
send(dynamic data) → void
Send a message. @param data.
toString() String
A string representation of this object.
inherited
transportClosed() → void
Transport was closed.

Operators

operator ==(Object other) bool
The equality operator.
override