| 26 | * Statistics about the worker pool |
| 27 | */ |
| 28 | export interface PoolStats { |
| 29 | /** The number of active threads in the pool */ |
| 30 | utilization: number; |
| 31 | /** The number of completed tasks */ |
| 32 | completed: number; |
| 33 | /** The number of tasks waiting to be processed */ |
| 34 | waiting: number; |
| 35 | /** The number of threads in the pool */ |
| 36 | threads: number; |
| 37 | } |
| 38 | |
| 39 | /** |
| 40 | * @classdesc Manages the TLS library and worker pool. |
nothing calls this directly
no outgoing calls
no test coverage detected