package main
import (
"fmt"
"time"
"utils/worker"
)
func main() {
wq := worker.New()
wq.Start()
for i := 0; i < 100; i++ {
fmt.Printf("init is %v \n", i)
func(data int) {
wq.Invoke(func() {
fmt.Printf("get params is %v \n", data)
})
}(i)
}
time.After(time.Second * 3)
wq.Stop()
}
-
Notifications
You must be signed in to change notification settings - Fork 0
CoMixCo/worker
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
No description, website, or topics provided.
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published