# Functions
DropClosedBufferData specifies that the data in ring buffer and input channel buffer will be dropped after Close() called.
InChanSize sets input channel buffer size It means that input := make(chan interface{}, inChanSize).
InitBufferSize sets the ring buffer initial size.
MaxBufferSize sets the ring buffer max size If set to 0, it means no limit.
No description provided by the author
NewSelfAdptiveRingBuffer creates a self adaptive ringbuffer with init and max size.
OutChanSzie sets output channel buffer size It means that output := make(chan interface{}, outChanSize).
# Structs
ChannX is a self adaptive channel with a ring buffer.
No description provided by the author
# Type aliases
Options defines the functional option type for Channel.