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

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

Issue 14150002: Remove StreamSink(replaced by EventSink) and make IOSink extend EventSink. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 8 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
« no previous file with comments | « sdk/lib/io/websocket_impl.dart ('k') | tests/isolate/global_error_handler_stream_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/isolate/isolate_stream.dart
diff --git a/sdk/lib/isolate/isolate_stream.dart b/sdk/lib/isolate/isolate_stream.dart
index e060bcb4770453bd4f49fe48f44ba375c664d932..37db4e535d346b6e12bcae9c9c13615be3caed6d 100644
--- a/sdk/lib/isolate/isolate_stream.dart
+++ b/sdk/lib/isolate/isolate_stream.dart
@@ -94,8 +94,7 @@ class IsolateStream extends Stream<dynamic> {
*
* [IsolateSink]s can be transmitted to other isolates.
*/
-abstract class IsolateSink extends StreamSink<dynamic> {
- // TODO(8997): Implement EventSink instead.
+abstract class IsolateSink extends EventSink<dynamic> {
// TODO(floitsch): Actually it should be a StreamSink (being able to flow-
// control).
« no previous file with comments | « sdk/lib/io/websocket_impl.dart ('k') | tests/isolate/global_error_handler_stream_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698