Versions in this module Expand all Collapse all v0 v0.0.1 Feb 9, 2022 Changes in this version + type Worker struct + Name string + State WorkerState + func (w *Worker) Active() bool + func (w *Worker) Done() + func (w *Worker) Fail() + type WorkerSet struct + Workers []*Worker + func New() *WorkerSet + func (w *WorkerSet) Add(s string) *Worker + func (w *WorkerSet) Print(ctx context.Context) + type WorkerState int + const Completed + const Failed + const Pending