* Iterates over all tasks in queue in the insertion order. * @param {function(!TaskDef)} callback
(callback)
| 124 | * @param {function(!TaskDef)} callback |
| 125 | */ |
| 126 | forEach(callback) { |
| 127 | this.tasks_.forEach(callback); |
| 128 | } |
| 129 | |
| 130 | /** |
| 131 | * Removes the task and returns "true" if dequeueing is successful. Otherwise |
no outgoing calls
no test coverage detected