Versions in this module Expand all Collapse all v0 v0.1.0 Sep 14, 2020 Changes in this version + type Pool struct + func NewPool(size int) (*Pool, error) + func (p *Pool) Close() error + func (p *Pool) Queue(t Task) error + func (p *Pool) Start() error + type Task struct + Fn func(params []interface{}) + Params []interface{}