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

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

Issue 12610006: Renamed StreamSink to EventSink. Renamed signalError to addError. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
Index: sdk/lib/isolate/isolate_stream.dart
diff --git a/sdk/lib/isolate/isolate_stream.dart b/sdk/lib/isolate/isolate_stream.dart
index d72389faa355903e40ff38162f2c4bdeb9fda831..43885a52d285f3d42b356fe88514be89cbfaeab8 100644
--- a/sdk/lib/isolate/isolate_stream.dart
+++ b/sdk/lib/isolate/isolate_stream.dart
@@ -125,7 +125,7 @@ class IsolateStream extends Stream<dynamic> {
*
* [IsolateSink]s can be transmitted to other isolates.
*/
-class IsolateSink extends StreamSink<dynamic> {
+class IsolateSink extends EventSink<dynamic> {
bool _isClosed = false;
final SendPort _port;
IsolateSink._fromPort(this._port);

Powered by Google App Engine
This is Rietveld 408576698