Skip to content

golang-design/thread

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

thread PkgGoDev Go Report Card thread

Package thread provides threading facilities, such as scheduling calls on a specific thread, local storage, etc.

import "golang.design/x/thread"

Quick Start

th := thread.New()

th.Call(func() {
    // call on the created thread
})

License

MIT © 2021 The golang.design Initiative