Versions in this module Expand all Collapse all v0 v0.3.1 Aug 21, 2021 Changes in this version + type LockQueue struct + func NewLockQueue(capacity uint64) *LockQueue + func (l *LockQueue) Get() (interface{}, bool) + func (l *LockQueue) GetAll() []interface{} + func (l *LockQueue) Put(a interface{}) + type RingGrowing struct + func NewRingGrowing(initialSize int) *RingGrowing + func (r *RingGrowing) ReadOne() (data interface{}, ok bool) + func (r *RingGrowing) WriteOne(data interface{})