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

Unified Diff: utils/pub/io.dart

Issue 11887016: Make StreamController's unnamed constructor create a single-sub stream. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. Created 7 years, 11 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 | « tests/lib/async/stream_single_to_multi_subscriber_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/io.dart
diff --git a/utils/pub/io.dart b/utils/pub/io.dart
index f70849f9a6d31da09e071d08b719a577f13cd390..b227378a28f552f3c541967d640d76d219dd0229 100644
--- a/utils/pub/io.dart
+++ b/utils/pub/io.dart
@@ -563,8 +563,11 @@ Future<String> consumeStringInputStream(StringInputStream stream) {
/// Wraps [stream] in a single-subscription [Stream] that emits the same data.
Stream<List<int>> wrapInputStream(InputStream stream) {
- var controller = new StreamController.singleSubscription();
- if (stream.closed) return controller..close();
+ var controller = new StreamController();
+ if (stream.closed) {
+ controller.close();
+ return controller.stream;
+ }
stream.onClosed = controller.close;
stream.onData = () => controller.add(stream.read());
« no previous file with comments | « tests/lib/async/stream_single_to_multi_subscriber_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698