Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(25)

Side by Side Diff: tests/isolate/ping_pause_test.dart

Issue 186403003: Add Isolate ping functionality. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 import "dart:isolate";
6 import "dart:async";
7 import "package:expect/expect.dart";
8 import "package:async_helper/async_helper.dart";
9
10 isomain1(replyPort) {
11 RawReceivePort port = new RawReceivePort();
12 port.handler = (v) {
13 replyPort.send(v);
14 if (v == 0) port.close();
15 };
16 replyPort.send(port.sendPort);
17 }
18
19 void main() {
20 asyncStart();
21 var completer = new Completer(); // Completed by first reply from isolate.
22 RawReceivePort reply = new RawReceivePort(completer.complete);
23 Isolate.spawn(isomain1, reply.sendPort).then((Isolate isolate) {
24 List result = [];
25 completer.future.then((echoPort) {
26 reply.handler = (v) {
27 result.add(v);
28 if (v == 0) {
29 Expect.listEquals([4, 3, 2, 1, 0], result);
30 reply.close();
31 asyncEnd();
32 }
33 };
34 echoPort.send(4);
35 echoPort.send(3);
36 Capability resume = isolate.pause();
37 isolate.ping((new ReceivePort()..first.then((_) {
floitsch 2014/03/04 12:12:51 I would prefer no cascading operator here.
Lasse Reichstein Nielsen 2014/03/06 12:47:17 There goes the one-liner :) Done.
38 Expect.isTrue(result.length <= 2);
39 echoPort.send(0);
40 isolate.resume(resume);
41 })).sendPort, Isolate.PING_CONTROL);
42 echoPort.send(2);
43 echoPort.send(1);
44 });
45 });
46 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698