Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

Diagrams

Paired light/dark Graphviz diagrams for the ARCP C# SDK. Edit the .dot sources; render with dot -Tsvg.

Project graph

ARCP C# project dependency graph

Session FSM

ARCP session FSM

Job FSM

ARCP job FSM

Capability negotiation

ARCP capability negotiation sequence

Heartbeat + ack

ARCP heartbeat + ack flow

Result chunks + progress

ARCP result_chunk + progress sequence

Render

cd docs/diagrams
for f in *.dot; do dot -Tsvg "$f" -o "${f%.dot}.svg"; done

graphviz provides dot. On macOS: brew install graphviz. On Debian/Ubuntu: apt-get install -y graphviz.