-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
51 lines (44 loc) · 860 Bytes
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package main
import (
"context"
"log"
"time"
"github.com/ash2k/stager"
)
func main() {
defer log.Print("Exiting main")
st := stager.New()
s := st.NextStage()
s.Go(func(ctx context.Context) error {
log.Print("Start 1.1")
defer log.Print("Stop 1.1")
<-ctx.Done()
return nil
})
s.Go(func(ctx context.Context) error {
log.Print("Start 1.2")
defer log.Print("Stop 1.2")
<-ctx.Done()
return nil
})
s = st.NextStage()
s.Go(func(ctx context.Context) error {
log.Print("Start 2")
defer log.Print("Stop 2")
<-ctx.Done()
return nil
})
s = st.NextStage()
s.Go(func(ctx context.Context) error {
log.Print("Start 3")
defer log.Print("Stop 3")
<-ctx.Done()
return nil
})
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
defer cancel()
err := st.Run(ctx)
if err != nil {
log.Fatal(err)
}
}