dart-archive / observe

Support for marking objects as observable, and getting notifications when those objects are mutated
https://pub.dartlang.org/packages/observe
BSD 3-Clause "New" or "Revised" License
13 stars 6 forks source link

dirty check should be one fixed-point per rAF #63

Closed DartBot closed 9 years ago

DartBot commented 9 years ago

Issue by jmesserly Originally opened as dart-lang/sdk#19136


Observable.dirtyCheck is triggering after every async operation. This can get very expensive. Better would be to batch them so we limit to 1 per rAF

discussion here: https://github.com/Polymer/platform-dev/issues/7

DartBot commented 9 years ago

Comment by sigmundch


Added this to the 1.6 milestone. Removed Priority-Unassigned label. Added Priority-Medium label.

DartBot commented 9 years ago

Comment by sigmundch


Removed this from the 1.6 milestone. Added Polymer-P-1 label.

DartBot commented 9 years ago

Comment by sigmundch


Removed Polymer-P-1 label. Added Polymer-Milestone-Next label.

DartBot commented 9 years ago

Comment by sigmundch


Added PolymerMilestone-Next label.

DartBot commented 9 years ago

Comment by sigmundch


Removed Polymer-Milestone-Next label.

DartBot commented 9 years ago

Comment by jmesserly


moved