OLD | NEW |
---|---|
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 library barback.utils; | 5 library barback.utils; |
6 | 6 |
7 import 'dart:async'; | 7 import 'dart:async'; |
8 | 8 |
9 /// A pair of values. | 9 /// A pair of values. |
10 class Pair<E, F> { | 10 class Pair<E, F> { |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
132 // Use a sync stream to preserve the synchrony behavior of the input streams. | 132 // Use a sync stream to preserve the synchrony behavior of the input streams. |
133 // If the inputs are sync, then this will be sync as well; if the inputs are | 133 // If the inputs are sync, then this will be sync as well; if the inputs are |
134 // async, then the events we receive will also be async, and forwarding them | 134 // async, then the events we receive will also be async, and forwarding them |
135 // sync won't change that. | 135 // sync won't change that. |
136 var controller = broadcast ? new StreamController.broadcast(sync: true) | 136 var controller = broadcast ? new StreamController.broadcast(sync: true) |
137 : new StreamController(sync: true); | 137 : new StreamController(sync: true); |
138 | 138 |
139 for (var stream in streams) { | 139 for (var stream in streams) { |
140 stream.listen((value) { | 140 stream.listen((value) { |
141 controller.add(value); | 141 controller.add(value); |
142 }, onError: (error) { | 142 }, |
Lasse Reichstein Nielsen
2013/10/04 08:45:17
just "controller.add", no need to eta-expand.
floitsch
2013/10/05 18:11:48
Done.
| |
143 controller.addError(error); | 143 onError: controller.addError, |
Lasse Reichstein Nielsen
2013/10/04 08:45:17
Is indentation right here. I'd like it to be inden
floitsch
2013/10/05 18:11:48
Done.
| |
144 }, onDone: () { | 144 onDone: () { |
145 doneCount++; | 145 doneCount++; |
146 if (doneCount == streams.length) controller.close(); | 146 if (doneCount == streams.length) controller.close(); |
147 }); | 147 }); |
148 } | 148 } |
149 | 149 |
150 return controller.stream; | 150 return controller.stream; |
151 } | 151 } |
152 | 152 |
153 /// Prepends each line in [text] with [prefix]. If [firstPrefix] is passed, the | 153 /// Prepends each line in [text] with [prefix]. If [firstPrefix] is passed, the |
154 /// first line is prefixed with that instead. | 154 /// first line is prefixed with that instead. |
(...skipping 26 matching lines...) Expand all Loading... | |
181 Future newFuture(callback()) => new Future.value().then((_) => callback()); | 181 Future newFuture(callback()) => new Future.value().then((_) => callback()); |
182 | 182 |
183 /// Returns a buffered stream that will emit the same values as the stream | 183 /// Returns a buffered stream that will emit the same values as the stream |
184 /// returned by [future] once [future] completes. If [future] completes to an | 184 /// returned by [future] once [future] completes. If [future] completes to an |
185 /// error, the return value will emit that error and then close. | 185 /// error, the return value will emit that error and then close. |
186 Stream futureStream(Future<Stream> future) { | 186 Stream futureStream(Future<Stream> future) { |
187 var controller = new StreamController(sync: true); | 187 var controller = new StreamController(sync: true); |
188 future.then((stream) { | 188 future.then((stream) { |
189 stream.listen( | 189 stream.listen( |
190 controller.add, | 190 controller.add, |
191 onError: (error) => controller.addError(error), | 191 onError: controller.addError, |
192 onDone: controller.close); | 192 onDone: controller.close); |
193 }).catchError((e) { | 193 }).catchError((e, StackTrace stackTrace) { |
194 controller.addError(e); | 194 controller.addError(e, stackTrace); |
195 controller.close(); | 195 controller.close(); |
196 }); | 196 }); |
197 return controller.stream; | 197 return controller.stream; |
198 } | 198 } |
OLD | NEW |