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

Unified Diff: lib/src/delegate/event_sink.dart

Issue 1219493008: Add a bunch of delegates for dart:async types. (Closed) Base URL: git@github.com:dart-lang/async.git@master
Patch Set: Code review changes Created 5 years, 5 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 | « lib/async.dart ('k') | lib/src/delegate/future.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/delegate/event_sink.dart
diff --git a/lib/src/delegate/event_sink.dart b/lib/src/delegate/event_sink.dart
new file mode 100644
index 0000000000000000000000000000000000000000..1fe86c15ad23b68ef2246743c41b315b70d16dfc
--- /dev/null
+++ b/lib/src/delegate/event_sink.dart
@@ -0,0 +1,25 @@
+// Copyright (c) 2015, 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.
+
+library async.delegate.event_sink;
+
+import 'dart:async';
+
+/// Simple delegating wrapper around an [EventSink].
+///
+/// Subclasses can override individual methods, or use this to expose only the
+/// [EventSink] methods of a subclass.
+class DelegatingEventSink<T> implements EventSink<T> {
+ final EventSink _sink;
+
+ /// Create a delegating sink forwarding calls to [sink].
+ DelegatingEventSink(EventSink sink) : _sink = sink;
+
+ void add(T data) => _sink.add(data);
+
+ void addError(error, [StackTrace stackTrace]) =>
+ _sink.addError(error, stackTrace);
+
+ void close() => _sink.close();
+}
« no previous file with comments | « lib/async.dart ('k') | lib/src/delegate/future.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698