21 lines
247 B
Plaintext
21 lines
247 B
Plaintext
@startuml
|
|
|
|
participant Queue
|
|
participant Algorithm
|
|
participant Ready
|
|
participant Retry
|
|
|
|
Queue -> Algorithm : get next node
|
|
|
|
alt retry == false
|
|
|
|
Algorithm -> Ready : append(node)
|
|
|
|
else retry == true
|
|
|
|
Algorithm -> Retry : append(node)
|
|
|
|
end
|
|
|
|
@enduml
|