* Returns the task with the specified ID or null. * @param {string} taskId * @return {?TaskDef}
(taskId)
| 68 | * @return {?TaskDef} |
| 69 | */ |
| 70 | getTaskById(taskId) { |
| 71 | return this.taskIdMap_[taskId] || null; |
| 72 | } |
| 73 | |
| 74 | /** |
| 75 | * Enqueues the task. If the task is already in the queue, the error is |
no outgoing calls
no test coverage detected