* ! 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
()
| 21188 | * @this |
| 21189 | */ |
| 21190 | function $$TaskTrackerFactoryProvider() { |
| 21191 | this.$get = valueFn(function(log) { return new TaskTracker(log); }); |
| 21192 | } |
| 21193 | |
| 21194 | function TaskTracker(log) { |
| 21195 | var self = this; |