dart-sdk/tests/isolate/kill_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

45 lines
1.3 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();
port.handler = (v) {
replyPort.send(v);
if (v == 0) port.close();
};
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((SendPort echoPort) {
List result = [];
reply.handler = (v) {
result.add(v);
if (v == 2) {
isolate.kill(priority: Isolate.IMMEDIATE);
}
echoPort.send(v - 1);
};
RawReceivePort exitSignal;
exitSignal = new RawReceivePort((_) {
Expect.listEquals([4, 3, 2], result);
exitSignal.close();
reply.close();
asyncEnd();
});
isolate.addOnExitListener(exitSignal.sendPort);
echoPort.send(4);
});
});
}