| 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 // This library itself is undocumented and not supported for end use. | 5 // This library itself is undocumented and not supported for end use. |
| 6 // Because dart:html must use some of this functionality, it has to be available | 6 // Because dart:html must use some of this functionality, it has to be available |
| 7 // via a dart:* library. The public APIs are reexported via package:mdv_observe. | 7 // via a dart:* library. The public APIs are reexported via package:mdv_observe. |
| 8 // Generally we try to keep this library minimal, with utility types and | 8 // Generally we try to keep this library minimal, with utility types and |
| 9 // functions in the package. | 9 // functions in the package. |
| 10 library dart.mdv_observe_impl; | 10 library dart.mdv_observe_impl; |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 * When a field, property, or indexable item is changed, a derived class should | 62 * When a field, property, or indexable item is changed, a derived class should |
| 63 * call [notifyPropertyChange]. See that method for an example. | 63 * call [notifyPropertyChange]. See that method for an example. |
| 64 */ | 64 */ |
| 65 abstract class ObservableMixin implements Observable { | 65 abstract class ObservableMixin implements Observable { |
| 66 StreamController _multiplexController; | 66 StreamController _multiplexController; |
| 67 List<ChangeRecord> _changes; | 67 List<ChangeRecord> _changes; |
| 68 | 68 |
| 69 Stream<List<ChangeRecord>> get changes { | 69 Stream<List<ChangeRecord>> get changes { |
| 70 if (_multiplexController == null) { | 70 if (_multiplexController == null) { |
| 71 _multiplexController = | 71 _multiplexController = |
| 72 new StreamController<List<ChangeRecord>>.multiplex(); | 72 new StreamController<List<ChangeRecord>>.broadcast(); |
| 73 } | 73 } |
| 74 return _multiplexController.stream; | 74 return _multiplexController.stream; |
| 75 } | 75 } |
| 76 | 76 |
| 77 void _deliverChanges() { | 77 void _deliverChanges() { |
| 78 var changes = _changes; | 78 var changes = _changes; |
| 79 _changes = null; | 79 _changes = null; |
| 80 if (hasObservers && changes != null) { | 80 if (hasObservers && changes != null) { |
| 81 // TODO(jmesserly): make "changes" immutable | 81 // TODO(jmesserly): make "changes" immutable |
| 82 _multiplexController.add(changes); | 82 _multiplexController.add(changes); |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 /** Queues an action to happen during the [deliverChangeRecords] timeslice. */ | 217 /** Queues an action to happen during the [deliverChangeRecords] timeslice. */ |
| 218 void queueChangeRecords(void deliverChanges()) { | 218 void queueChangeRecords(void deliverChanges()) { |
| 219 if (_deliverCallbacks == null) { | 219 if (_deliverCallbacks == null) { |
| 220 _deliverCallbacks = new Queue<Function>(); | 220 _deliverCallbacks = new Queue<Function>(); |
| 221 runAsync(deliverChangeRecords); | 221 runAsync(deliverChangeRecords); |
| 222 } | 222 } |
| 223 _deliverCallbacks.add(deliverChanges); | 223 _deliverCallbacks.add(deliverChanges); |
| 224 } | 224 } |
| 225 | 225 |
| 226 Queue _deliverCallbacks; | 226 Queue _deliverCallbacks; |
| OLD | NEW |