1234567891011121314151617181920212223242526272829303132333435 |
- package main
- import (
- "fmt"
- "time"
- "github.com/tal-tech/go-zero/core/mr"
- "github.com/tal-tech/go-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))
- }
|