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

Unified Diff: pkg/barback/lib/src/utils.dart

Issue 101523003: Add chain support to barback. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: code review Created 7 years 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: pkg/barback/lib/src/utils.dart
diff --git a/pkg/barback/lib/src/utils.dart b/pkg/barback/lib/src/utils.dart
index 71576ff32c8abf5586ef3ca53a5e7c7e6f52a2c8..a4a59507a00b2a5215218b6a661bda9cc5580d80 100644
--- a/pkg/barback/lib/src/utils.dart
+++ b/pkg/barback/lib/src/utils.dart
@@ -7,6 +7,8 @@ library barback.utils;
import 'dart:async';
import 'dart:typed_data';
+import 'package:stack_trace/stack_trace.dart';
+
/// A pair of values.
class Pair<E, F> {
E first;
@@ -151,12 +153,12 @@ Stream mergeStreams(Iterable<Stream> streams, {bool broadcast: false}) {
for (var stream in streams) {
stream.listen(
- controller.add,
- onError: controller.addError,
- onDone: () {
- doneCount++;
- if (doneCount == streams.length) controller.close();
- });
+ controller.add,
+ onError: controller.addError,
+ onDone: () {
+ doneCount++;
+ if (doneCount == streams.length) controller.close();
+ });
}
return controller.stream;
@@ -193,6 +195,9 @@ Future pumpEventQueue([int times=20]) {
// TODO(jmesserly): doc comment changed to due 14601.
Future newFuture(callback()) => new Future.value().then((_) => callback());
+/// Like [Future.sync], but wraps the Future in [Chain.track] as well.
+Future syncFuture(callback()) => Chain.track(new Future.sync(callback));
+
/// Returns a buffered stream that will emit the same values as the stream
/// returned by [future] once [future] completes.
///

Powered by Google App Engine
This is Rietveld 408576698