Versions in this module Expand all Collapse all v0 v0.0.2 May 10, 2020 v0.0.1 May 10, 2020 Changes in this version + type Job func() + type Pool struct + JobQueue chan Job + WorkerQueue chan *Worker + func NewPool(numWorkers int, jobQueueLen int) *Pool + func (p *Pool) Release() + func (p *Pool) Start() + type Worker struct + JobChannel chan Job + Stop chan struct{} + WorkerQueue chan *Worker + func (w *Worker) Start()