向其 ReceivePort 发送消息。
SendPort 由 ReceivePort 创建。通过 SendPort 发送的任何消息都将被传递到相应的 ReceivePort。可能存在许多指向同一 ReceivePort 的 SendPort。
SendPort 可以传递到其他 isolate,并且传递时保持相等。
- 实现类型
- 可用的扩展
属性
- hashCode → int
- 此发送端口的哈希码与 == 操作符一致。无设置器重写
- runtimeType → Type
- 对象运行类型的表示。无设置器继承
方法
-
noSuchMethod(
Invocation invocation) → dynamic - 当访问不存在的方法或属性时被调用。继承
-
send(
Object? message) → void - 通过此发送端口异步发送
message
,到对应的 ReceivePort。 -
toString(
) → String - 此对象的字符串表示。继承
运算符
-
operator ==(
Object other) → bool - 测试
other
是否是与此相同的 ReceivePort 指向的 SendPort。重写