Transport class abstract

Implementers

Constructors

Transport(dynamic connect)

Properties

connect ↔ SocketConnect?
getter/setter pair
discarded bool
getter/setter pair
handlesUpgrades bool
no setter
hashCode int
The hash code for this object.
no setterinherited
httpCompression Map?
getter/setter pair
maxHttpBufferSize double?
getter/setter pair
messageHandler MessageHandler?
getter/setter pair
name String?
getter/setter pair
perMessageDeflate Map?
getter/setter pair
readyState String
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
sid String?
getter/setter pair
supportsBinary bool?
getter/setter pair
supportsFraming bool
no setter
writable bool?
getter/setter pair

Methods

clearListeners() → void
This function unbinds all the handlers for all the events.
inherited
close([dynamic closeFn()?]) → void
discard() → void
doClose([dynamic callback()?]) → void
emit(String event, [dynamic data]) → void
This function triggers all the handlers currently listening to event and passes them data.
inherited
hasListeners(String event) bool
Returns whether the event has registered.
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
off(String event, [EventHandler? handler]) → void
This function attempts to unbind the handler from the event
inherited
on(String event, EventHandler handler) → void
This function binds the handler as a listener to the event
inherited
once(String event, EventHandler 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
onClose() → void
onData(dynamic data) → void
onError(dynamic msg, [dynamic desc]) → void
onPacket(Map packet) → void
onRequest(SocketConnect connect) → void
send(List<Map> data) → void
toString() String
A string representation of this object.
inherited

Operators

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