# Functions

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# Variables

No description provided by the author

# Structs

ConcurrentBlockingQueue 基于切片的并发阻塞队列,使用支持timeout的cond来实现信号的广播,不保证FIFO唤醒等待者.
ConcurrentBlockingQueueRingBuffer 基于ringBuffer的并发阻塞队列,使用支持timeout的cond来实现信号的广播,不保证FIFO唤醒等待者.
ConcurrentBlockingQueueV1 基于切片的并发阻塞队列,封装sync.Cond增加了超时信号转发机制,不保证FIFO唤醒等待者.
ConcurrentLinkedQueue 基于CAS操作的无锁并发队列,采用链表实现.
ConcurrentQueue 基于切片的并发队列.
No description provided by the author
CondAtomic 广播信号的cond 通过channel使用广播唤醒等待者 实现不了singal方法,会出现漏信号的情况.
CondV1 转发信号的的cond 基于sync.Cond实现.
No description provided by the author
PriorityQueue 优先队列。容量固定 小顶堆.

# Interfaces

No description provided by the author
No description provided by the author