d313219e85
Add diagrams for rpc routing and acl entity relationship contributing: create directory structure for new docs WIP diagram for catalog entities Add overview diagram Co-Authored-By: Kelly Devlin <kdevlin@hashicorp.com>
18 lines
593 B
Plaintext
18 lines
593 B
Plaintext
graph TD
|
|
|
|
SubscribeIndex0[Subscribe, index = 0, no snapshot]
|
|
SubscribeIndexNot0[Subscribe, index > 0, with snapshot]
|
|
|
|
SubscribeIndex0 --->|if events in topic| Snapshot
|
|
Snapshot --> EndOfSnapshot
|
|
SubscribeIndex0 ------->|no events in topic| EndOfSnapshot
|
|
EndOfSnapshot --> EventStream
|
|
|
|
SubscribeIndexNot0 -->|if index != TopicBuffer.Head| NewSnapshotToFollow
|
|
NewSnapshotToFollow ---> Snapshot
|
|
|
|
SubscribeIndexNot0 -->|if index == TopicBuffer.Head| EventStream
|
|
|
|
class EndOfSnapshot,NewSnapshotToFollow framing
|
|
classDef framing fill:#FFD700,stroke:#333
|