https://github.com/alecthomas/concurrency
Types and functions for managing concurrency in Go.
https://github.com/alecthomas/concurrency
Last synced: over 1 year ago
JSON representation
Types and functions for managing concurrency in Go.
- Host: GitHub
- URL: https://github.com/alecthomas/concurrency
- Owner: alecthomas
- License: mit
- Created: 2023-05-24T00:04:22.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2025-03-12T22:35:41.000Z (over 1 year ago)
- Last Synced: 2025-03-12T23:27:39.354Z (over 1 year ago)
- Language: Go
- Size: 14.6 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: COPYING
Awesome Lists containing this project
README
# A collection of types and functions for structured concurrency
[](https://pkg.go.dev/github.com/alecthomas/concurrency) [](https://github.com/alecthomas/concurrency/actions) [](https://goreportcard.com/report/github.com/alecthomas/concurrency) [](https://gophers.slack.com/messages/CN9DS8YF3)
This package centres around a managed tree of goroutines. An error in any
goroutine or sub-tree will cancel the entire tree. Each node in the tree is a
group of goroutines that can be waited on.
There are also useful concurrent functions that utilise the tree.