Versions in this module Expand all Collapse all v0 v0.6.1 Jul 31, 2023 v0.0.4 Jul 31, 2023 Changes in this version + const DefaultChanBufferSize + func StatusErrEqual(err1, err2 error) bool + type Channel struct + func NewChannel() *Channel + func NewChannelWithSize(bufSize int) *Channel + func (c *Channel) Receive(ctx context.Context) (interface{}, error) + func (c *Channel) ReceiveOrFail() (interface{}, bool) + func (c *Channel) Replace(value interface{}) + func (c *Channel) Send(value interface{}) + func (c *Channel) SendContext(ctx context.Context, value interface{}) error + func (c *Channel) SendOrFail(value interface{}) bool