| 101 | * It polls the master for tasks and reports results back. |
| 102 | */ |
| 103 | export class WorkerExecutor extends TaskExecutor { |
| 104 | private masterUrl: string; |
| 105 | private inProgressTaskIds: Set<number> = new Set(); |
| 106 | public isShuttingDown: boolean = false; |
nothing calls this directly
no outgoing calls
no test coverage detected