我正在查看 Isolates 的文档并注意到您可以使用静态方法spawnUri
从文件创建隔离。
如此处所示:http: //api.dartlang.org/docs/releases/latest/dart_isolate/Isolate.html#spawnUri
在该文档中,它声明它返回一个返回 Isolate 实例的未来,但是没有其他方法。
有谁知道你是如何使用这个实例在隔离之间来回发送消息的?
当前代码:
Isolate.spawnUri(Uri.parse(myLibraryFileName),[],"").then((Isolate iso) {
// Is there a way of getting the SendPort of the isolate?
//Or is there other ways of calling different functions in
//code (and being able to send messages back to the main isolate)
});
谢谢你。