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

Unified Diff: lib/src/delegates.dart

Issue 1149563010: Add new features to package:async. (Closed) Base URL: https://github.com/dart-lang/async@master
Patch Set: Created 5 years, 6 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: lib/src/delegates.dart
diff --git a/lib/src/delegates.dart b/lib/src/delegates.dart
new file mode 100644
index 0000000000000000000000000000000000000000..7c514c3e7305226ecf54aa8ae799d2c4432a17d4
--- /dev/null
+++ b/lib/src/delegates.dart
@@ -0,0 +1,47 @@
+// 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.streams.stream_subscription;
+
+import 'dart:async';
+
+/// Simple delegating wrapper around a [StreamSubscription].
+///
+/// Subclasses can override individual methods.
+class DelegatingStreamSubscription<T> implements StreamSubscription<T> {
+ final StreamSubscription _source;
+
+ DelegatingStreamSubscription(StreamSubscription subscription)
+ : _source = subscription;
+
+ void onData(void handleData(T data)) {
+ _source.onData(handleData);
+ }
+
+ void onError(Function handleError) {
+ _source.onError(handleError);
+ }
+
+ void onDone(void handleDone()) {
+ _source.onDone(handleDone);
+ }
+
+ void pause([Future resumeFuture]) {
+ _source.pause(resumeFuture);
+ }
+
+ void resume() {
+ _source.resume();
+ }
+
+ Future cancel() {
+ return _source.cancel();
+ }
+
+ Future asFuture([futureValue]) {
+ return _source.asFuture(futureValue);
+ }
+
+ bool get isPaused => _source.isPaused;
+}
« no previous file with comments | « lib/async.dart ('k') | lib/src/stream_completer.dart » ('j') | lib/src/stream_events.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698