https://github.com/golang-design/thread
🧵 thead facilities in Go
https://github.com/golang-design/thread
go golang thread
Last synced: 8 months ago
JSON representation
🧵 thead facilities in Go
- Host: GitHub
- URL: https://github.com/golang-design/thread
- Owner: golang-design
- License: mit
- Created: 2021-01-22T09:21:01.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-01-22T12:16:24.000Z (almost 5 years ago)
- Last Synced: 2025-04-01T07:21:31.144Z (9 months ago)
- Topics: go, golang, thread
- Language: Go
- Homepage: https://golang.design/x/thread
- Size: 4.88 KB
- Stars: 16
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- go-awesome - thread
- go-awesome - Thread
README
# thread [](https://pkg.go.dev/golang.design/x/thread) [](https://goreportcard.com/report/golang.design/x/thread) 
Package thread provides threading facilities, such as scheduling
calls on a specific thread, local storage, etc.
```go
import "golang.design/x/thread"
```
## Quick Start
```go
th := thread.New()
th.Call(func() {
// call on the created thread
})
```
## License
MIT © 2021 The golang.design Initiative