* ! This is a private undocumented service ! * * @name $$taskTrackerFactory * @description * A function to create `TaskTracker` instances. * * A `TaskTracker` can keep track of pending tasks (grouped by type) and can notify interested * parties when all pending tasks (or tasks of a specific t
()
| 21253 | * @this |
| 21254 | */ |
| 21255 | function $$TaskTrackerFactoryProvider() { |
| 21256 | this.$get = valueFn(function(log) { return new TaskTracker(log); }); |
| 21257 | } |
| 21258 | |
| 21259 | function TaskTracker(log) { |
| 21260 | var self = this; |