Versions in this module Expand all Collapse all v1 v1.0.1 Sep 22, 2023 v1.0.0 Jul 26, 2023 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{})