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

Unified Diff: sdk/lib/isolate/isolate.dart

Issue 70263002: Add RawReceivePort to dart2js. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Change strategy to base everything on raw port. Created 7 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: sdk/lib/isolate/isolate.dart
diff --git a/sdk/lib/isolate/isolate.dart b/sdk/lib/isolate/isolate.dart
index 2774f5bc07c34a4d10164f64996b8b15de149709..8db81dab0b2fbd7c564d4bf28c719049f06afa35 100644
--- a/sdk/lib/isolate/isolate.dart
+++ b/sdk/lib/isolate/isolate.dart
@@ -206,6 +206,11 @@ abstract class RawReceivePort {
* After a call to this method any incoming message is silently dropped.
*/
void close();
+
+ /**
+ * Returns a send port that sends to this receive port.
ngeoffray 2013/11/20 10:16:30 a send port -> a [SendPort].
Lasse Reichstein Nielsen 2013/11/20 10:35:26 Done.
+ */
+ SendPort get sendPort;
}
/**

Powered by Google App Engine
This is Rietveld 408576698