Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 544 Bytes

notes.md

File metadata and controls

17 lines (14 loc) · 544 Bytes

Notes

  • Step 1 extract all gendoc statements a single file?? or json parseable list by service/repo
  • step 2 parse all the files only containing step 1 (interim state) building a node tree by precedence where top of the tree has higher importance
    • e.g. service>>channel>operation>message

Diagram in Code

flowchart TD
    M[Message]
    A[Service] -->|1..n| C(Channel)
    C --> OpType{Publish/Sub}
    OpType -->|Publish| Operation[Operation]
    OpType -->|Subscribe| Operation[Operation]
    Operation[Operation] --> M
Loading