W3cubDocs

/Dart 2

SendPort class

Sends messages to its ReceivePorts.

SendPorts are created from ReceivePorts. Any message sent through a SendPort is delivered to its corresponding ReceivePort. There might be many SendPorts for the same ReceivePort.

SendPorts can be transmitted to other isolates, and they preserve equality when sent.

Implemented types

Constructors

SendPort()

Properties

hashCodeint
read-only, override
Returns an immutable hash code for this send port that is consistent with the == operator.
runtimeTypeType
read-only, inherited
A representation of the runtime type of the object.

Methods

send(dynamic message) → void
Sends an asynchronous message through this send port, to its corresponding ReceivePort. [...]
noSuchMethod(Invocation invocation) → dynamic
inherited
Invoked when a non-existent method or property is accessed. [...]
toString() → String
inherited
Returns a string representation of this object.

Operators

operator ==(dynamic other) → bool
override
Tests whether other is a SendPort pointing to the same ReceivePort as this one.

© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dart.dev/stable/2.5.0/dart-isolate/SendPort-class.html