Registry / utility / goexl-simaqian

goexl-simaqian

JSON →
library0.4.0gogounverified

A Go library for concurrent task execution with configurable workers and error handling.

go get github.com/goexl/simaqian
INSTALL
IMPORT
SIG · GOEXL-SIMAQIAN
G
goexl-simaqian
utilitygov0.4.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

simaqian
github.com/goexl/simaqian

Creates a worker pool with 5 workers and submits 10 tasks.

package main import ( "fmt" "github.com/goexl/simaqian" ) func main() { pool := simaqian.New().Worker(5).Build() for i := 0; i < 10; i++ { i := i pool.Submit(func() error { fmt.Printf("Task %d\n", i) return nil }) } pool.Wait() }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.4.0latest on pkg.go.dev
Audit
Dependencies

No dependency data recorded yet.

Agent activity
4 hits · last 30 days
node
4
Resources
goexl-simaqian — go get goexl-simaqian · libregistry