Versions in this module Expand all Collapse all v0 v0.20.5 Dec 19, 2022 v0.20.4 Dec 19, 2022 Changes in this version + type GoRoutinePool struct + func NewGoRoutinePool(numWorkers int) *GoRoutinePool + func (p *GoRoutinePool) Schedule(task Task) + func (p *GoRoutinePool) Stop() + type SimpleMutex chan struct + func NewSimpleMutex() SimpleMutex + func (s SimpleMutex) Lock() + func (s SimpleMutex) TryLock() bool + func (s SimpleMutex) Unlock() + type Task func()