Pool is the worker pool.
| 23 | |
| 24 | // Pool is the worker pool. |
| 25 | type Pool struct { |
| 26 | limit int |
| 27 | workers chan *Worker |
| 28 | name string |
| 29 | metrics *metric.Metrics |
| 30 | } |
| 31 | |
| 32 | // Worker is the worker struct. |
| 33 | type Worker struct { |
nothing calls this directly
no outgoing calls
no test coverage detected