Files
2026-07-27 20:09:01 -04:00

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