| 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.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 Loading... |
| 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 } |
| OLD | NEW |