File tree 1 file changed +9
-4
lines changed
docs/src/architecture/08_concepts/gateway
1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,11 @@ icon: material/airplane-cog
24
24
[*] --> init
25
25
init --> [*]
26
26
}
27
+
28
+ state Follower {
29
+ [*]
30
+ }
31
+
27
32
state Config {
28
33
checkConfigFromDB-->Database: release
29
34
Database-->checkConfigFromDB: wait
@@ -40,9 +45,11 @@ icon: material/airplane-cog
40
45
}
41
46
State checkDB{
42
47
tick --> UpdateThreshold
43
- UpdateThreshold --> tick
44
- UpdateThreshold--> updatedb: not updated recently
48
+ UpdateThreshold --> tick: data is fresh
49
+ UpdateThreshold--> Follower: data is stale
45
50
updatedb --> tick
51
+ updatedb-->Follower
52
+ Follower -->updatedb
46
53
}
47
54
state Database{
48
55
Unlocked --> Locked
@@ -65,8 +72,6 @@ icon: material/airplane-cog
65
72
locked--> unlocked
66
73
}
67
74
}
68
-
69
-
70
75
```
71
76
72
77
## Bootstrap
You can’t perform that action at this time.
0 commit comments