-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherrorFinal.wsd
More file actions
34 lines (24 loc) · 796 Bytes
/
errorFinal.wsd
File metadata and controls
34 lines (24 loc) · 796 Bytes
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
@startuml
entity entry
rectangle "Stream" {
queue PrincipalStream
actor Consumer
}
rectangle "Manual Error Management" {
card ErrorManagement
queue DelQueueStream
card ErrorInitializer
actor ManualOperation
database Database
}
entry -l-> PrincipalStream : __""**1**""__ - Push Flow
Consumer <-l- PrincipalStream : 2- Consume
Consumer --> ErrorManagement : 3 - **Error detected**
ErrorManagement --> DelQueueStream : 4 - Not resolvable
DelQueueStream --> ErrorInitializer : 5 - Consume
ErrorInitializer -> Database : 6 - Create new Record
ManualOperation <- Database : 7 - List uncorrected Errors
ManualOperation -> DelQueueStream : 8 - Check Errors
ManualOperation -> PrincipalStream : 9 - Replay corrected Errors
ManualOperation -> Database : 10 - Remove resolved Errors
@enduml