SendPort抽象 接口

向其 ReceivePort 发送消息。

SendPortReceivePort 创建。通过 SendPort 发送的消息将被送达相应的 ReceivePort。同一个 ReceivePort 可能对应许多 SendPort

SendPort 可以传输到其他 isolate,并且在传输过程中保持相等性。

已实现的类型
可用的扩展

构造函数

SendPort()

属性

hashCode int
为本 send port 提供的一个与 == 运算符一致的唯一散列码。
无设定器重写
runtimeType Type
表示对象的运行时类型的表示形式。
无设定器继承

方法

noSuchMethod(Invocation invocation) → dynamic
当访问不存在的方法或属性时被调用。
继承
send(Object? message) → void
通过此 send port 发送一个异步的 message 到相应的 ReceivePort
toString() String
本对象的字符串表示形式。
继承

操作符

operator ==(Object other) bool
检查 other 是否是指向与此 one 相同 ReceivePortSendPort
重写