dart-sdk/tests/isolate/kill_self_test.dart
lrn@google.com 1b208bd6e6 Update Isolate API.
Remove AS_EVENT as priority of ping/kill. It wasn't very usable or predictable.
Make priority consistently named and a named parameter.
Add response object to ping/addExitListener so it doesn't have to send null.
This is useful for cases where you want to use the same receive port for
multiple purposes.

R=sgjesse@google.com

Review URL: https://codereview.chromium.org//1074223002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@45092 260f80e4-7a28-3924-810f-c04153c831b5
2015-04-13 10:29:54 +00:00

44 lines
1.4 KiB
Dart

// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import "dart:isolate";
import "dart:async";
import "package:expect/expect.dart";
import "package:async_helper/async_helper.dart";
isomain1(replyPort) {
RawReceivePort port = new RawReceivePort();
bool firstEvent = true;
port.handler = (v) {
if (!firstEvent) {
throw "Survived suicide";
}
var controlPort = v[0];
var killCapability = v[1];
firstEvent = false;
var isolate = new Isolate(controlPort,
terminateCapability: killCapability);
isolate.kill(priority: Isolate.IMMEDIATE);
};
replyPort.send(port.sendPort);
}
void main() {
asyncStart();
var completer = new Completer(); // Completed by first reply from isolate.
RawReceivePort reply = new RawReceivePort(completer.complete);
Isolate.spawn(isomain1, reply.sendPort).then((Isolate isolate) {
completer.future.then((isolatePort) {
RawReceivePort exitSignal;
exitSignal = new RawReceivePort((_) {
exitSignal.close();
asyncEnd();
});
isolate.addOnExitListener(exitSignal.sendPort);
isolatePort.send([isolate.controlPort, isolate.terminateCapability]);
reply.close();
});
});
}