mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-23 17:20:24 +08:00
18 lines
258 B
Go
18 lines
258 B
Go
package main
|
|
|
|
import (
|
|
"time"
|
|
|
|
"zero/core/executors"
|
|
)
|
|
|
|
func main() {
|
|
exeutor := executors.NewBulkExecutor(func(items []interface{}) {
|
|
println(len(items))
|
|
}, executors.WithBulkTasks(10))
|
|
for {
|
|
exeutor.Add(1)
|
|
time.Sleep(time.Millisecond * 90)
|
|
}
|
|
}
|