You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-zero/example/mapreduce/finishvoid/finishvoid.go

36 lines
534 B
Go

package main
import (
"fmt"
"time"
"zero/core/mr"
"zero/core/timex"
)
func main() {
start := timex.Now()
mr.FinishVoid(func() {
time.Sleep(time.Second)
}, func() {
time.Sleep(time.Second * 5)
}, func() {
time.Sleep(time.Second * 10)
}, func() {
time.Sleep(time.Second * 6)
}, func() {
if err := mr.Finish(func() error {
time.Sleep(time.Second)
return nil
}, func() error {
time.Sleep(time.Second * 10)
return nil
}); err != nil {
fmt.Println(err)
}
})
fmt.Println(timex.Since(start))
}