Document architecture decision to capture `ActivityExecutionContext` snapshots at execution time. Updated TOC and dependency graph to reference the new ADR.
12 lines
650 B
Plaintext
12 lines
650 B
Plaintext
digraph {
|
|
node [shape = plaintext];
|
|
subgraph {
|
|
_1 [label = "1. Record architecture decisions"; URL = "0001-record-architecture-decisions.html"];
|
|
_2 [label = "2. Fault Propagation from Child to Parent Activities"; URL ="0002-fault-propagation-from-child-to-parent-activities.html"];
|
|
_1 -> _2 [style= "dotted", weight = 1];
|
|
_3 [label = "3. Direct Bookmark Management in WorkflowExecutionContext"; URL = "0003-direct-bookmark-management-in-workflowexecutioncontext.html"];
|
|
_2 -> _3 [style = "dotted", weight = 1];
|
|
_4 [label ="4. Activity Execution Snapshots"; URL = "0004-activity-execution-snapshots.html"];
|
|
_3 -> _4 [style = "dotted", weight = 1];
|
|
}
|
|
} |