getIsolateID 静态方法

  1. @已弃用("使用 getIsolateId 代替")
String? getIsolateID(
  1. Isolate isolate
)

返回一个表示 isolate ID 的 String 令牌。

如果正在运行的 Dart 环境不支持服务协议,则返回 null。

实现

@Deprecated("Use getIsolateId instead")
static String? getIsolateID(Isolate isolate) {
  // TODO: When NNBD is complete, delete the following line.
  ArgumentError.checkNotNull(isolate, 'isolate');
  return _getIsolateIdFromSendPort(isolate.controlPort);
}