-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsaga.go
64 lines (57 loc) · 1.04 KB
/
saga.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
52
53
54
55
56
57
58
59
60
61
62
63
64
package main
import (
"context"
"fmt"
"time"
)
// Saga is a type that represents a saga
type Saga struct {
ID string
Steps []Step
Ctx context.Context
CancelCtx context.CancelFunc
}
// Step is a type that represents a step in a saga
type Step struct {
Name string
Func func(ctx context.Context) error
}
// NewSaga creates a new saga
func NewSaga(id string, steps []Step) *Saga {
ctx, cancel := context.WithCancel(context.Background())
return &Saga{
ID: id,
Steps: steps,
Ctx: ctx,
CancelCtx: cancel,
}
}
// Run runs the saga
func (s *Saga) Run() error {
for _, step := range s.Steps {
err := step.Func(s.Ctx)
if err != nil {
s.CancelCtx()
return err
}
}
return nil
}
// ExampleStep is an example step
func ExampleStep(ctx context.Context) error {
fmt.Println("Example Step")
time.Sleep(time.Second * 5)
return nil
}
func main() {
saga := NewSaga("example-saga", []Step{
{
Name: "Example Step",
Func: ExampleStep,
},
})
err := saga.Run()
if err != nil {
fmt.Println(err)
}
}