Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/smallnest/chanx
unbounded chan
https://github.com/smallnest/chanx
Last synced: 5 days ago
JSON representation
unbounded chan
- Host: GitHub
- URL: https://github.com/smallnest/chanx
- Owner: smallnest
- License: mit
- Created: 2021-05-10T09:35:20.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-05-21T15:35:36.000Z (6 months ago)
- Last Synced: 2024-08-03T17:18:18.729Z (3 months ago)
- Language: Go
- Size: 14.6 KB
- Stars: 425
- Watchers: 10
- Forks: 63
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# chanx
Unbounded chan with ringbuffer.
[![License](https://img.shields.io/:license-MIT-blue.svg)](https://opensource.org/licenses/MIT) ![GitHub](https://img.shields.io/github/license/smallnest/chanx) ![GitHub Action](https://github.com/smallnest/chanx/actions/workflows/go.yaml/badge.svg) [![Go Report Card](https://goreportcard.com/badge/github.com/smallnest/chanx)](https://goreportcard.com/report/github.com/smallnest/chanx) [![GoDoc](https://godoc.org/github.com/smallnest/chanx?status.png)](http://godoc.org/github.com/smallnest/chanx)
Refer to the below articles and issues:
1. https://github.com/golang/go/issues/20352
2. https://stackoverflow.com/questions/41906146/why-go-channels-limit-the-buffer-size
3. https://medium.com/capital-one-tech/building-an-unbounded-channel-in-go-789e175cd2cd
4. https://erikwinter.nl/articles/2020/channel-with-infinite-buffer-in-golang/## Usage
If you want to use it with Go 1.17.x or below, you can use `github.com/smallnest/[email protected]`.
Since `github.com/smallnest/[email protected]`, it support Go generics.```go
ch := NewUnboundedChan(1000)
// or ch := NewUnboundedChanSize(10,200,1000)go func() {
for ...... {
...
ch.In <- ... // send values
...
}close(ch.In) // close In channel
}()for v := range ch.Out { // read values
fmt.Println(v)
}```