Versions in this module Expand all Collapse all v1 v1.0.1 Oct 14, 2022 v1.0.0 Jun 2, 2022 Changes in this version + type Queue struct + PoolChan chan interface{} + PoolSize int + func NewQueue(size int) *Queue + func (this *Queue) Exchange(num int) (add int) + func (this *Queue) Init(size int) *Queue + func (this *Queue) Pull() interface{} + func (this *Queue) Push(i interface{}) bool + func (this *Queue) PushSlice(s []interface{})