Sobes.tech
Junior — Senior

Worker pool with lifecycle management

livecode

Task condition

It is required to implement a worker pool that conforms to the following interface:

type WorkerPool interface {
    Start(ctx context.Context)
    Stop()
}