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

Side by Side Diff: packages/barback/lib/src/utils/stream_pool.dart

Issue 3014633002: Roll to pickup pool changes (Closed)
Patch Set: Created 3 years, 2 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 unified diff | Download patch
« no previous file with comments | « packages/barback/lib/src/utils/multiset.dart ('k') | packages/barback/pubspec.yaml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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.stream_pool; 5 library barback.utils.stream_pool;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 8
9 /// A pool of streams whose events are unified and emitted through a central 9 /// A pool of streams whose events are unified and emitted through a central
10 /// stream. 10 /// stream.
(...skipping 27 matching lines...) Expand all
38 : _controller = new StreamController<T>.broadcast(sync: true); 38 : _controller = new StreamController<T>.broadcast(sync: true);
39 39
40 /// Adds [stream] as a member of this pool. 40 /// Adds [stream] as a member of this pool.
41 /// 41 ///
42 /// Any events from [stream] will be emitted through [this.stream]. If 42 /// Any events from [stream] will be emitted through [this.stream]. If
43 /// [stream] is sync, they'll be emitted synchronously; if [stream] is async, 43 /// [stream] is sync, they'll be emitted synchronously; if [stream] is async,
44 /// they'll be emitted asynchronously. 44 /// they'll be emitted asynchronously.
45 void add(Stream<T> stream) { 45 void add(Stream<T> stream) {
46 if (_subscriptions.containsKey(stream)) return; 46 if (_subscriptions.containsKey(stream)) return;
47 _subscriptions[stream] = stream.listen(_controller.add, 47 _subscriptions[stream] = stream.listen(_controller.add,
48 onError: _controller.addError, 48 onError: _controller.addError, onDone: () => remove(stream));
49 onDone: () => remove(stream));
50 } 49 }
51 50
52 /// Removes [stream] as a member of this pool. 51 /// Removes [stream] as a member of this pool.
53 void remove(Stream<T> stream) { 52 void remove(Stream<T> stream) {
54 var subscription = _subscriptions.remove(stream); 53 var subscription = _subscriptions.remove(stream);
55 if (subscription != null) subscription.cancel(); 54 if (subscription != null) subscription.cancel();
56 } 55 }
57 56
58 /// Removes all streams from this pool and closes [stream]. 57 /// Removes all streams from this pool and closes [stream].
59 void close() { 58 void close() {
60 for (var subscription in _subscriptions.values) { 59 for (var subscription in _subscriptions.values) {
61 subscription.cancel(); 60 subscription.cancel();
62 } 61 }
63 _subscriptions.clear(); 62 _subscriptions.clear();
64 _controller.close(); 63 _controller.close();
65 } 64 }
66 } 65 }
OLDNEW
« no previous file with comments | « packages/barback/lib/src/utils/multiset.dart ('k') | packages/barback/pubspec.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698