mirror of
https://github.com/temporalio/temporal.git
synced 2026-08-30 18:41:49 -07:00
## What changed? Moved decision which d2 layout engine to use into file. ## Why? Allows each file to pick the right layout engine for itself. Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
57 lines
1.1 KiB
Plaintext
57 lines
1.1 KiB
Plaintext
# https://d2lang.com
|
|
# Generate SVG by running `make` inside of `docs/`.
|
|
|
|
vars: {
|
|
d2-config: {
|
|
layout-engine: elk
|
|
}
|
|
}
|
|
|
|
classes: {
|
|
invisible: {
|
|
style.opacity: 0
|
|
label: a
|
|
}
|
|
textonly: {
|
|
label: ""
|
|
style.stroke: transparent
|
|
style.fill: transparent
|
|
}
|
|
}
|
|
|
|
Client
|
|
|
|
Server: {
|
|
label: ""
|
|
grid-columns: 3
|
|
horizontal-gap: 120
|
|
class: textonly
|
|
|
|
Frontend: {
|
|
grid-columns: 3
|
|
vertical-gap: 70
|
|
|
|
Interceptor: { label: "🔁 gRPC interceptor" }
|
|
Handlers: {
|
|
label: "..."
|
|
style.multiple: true
|
|
}
|
|
Client: { label: "🔁 History client" }
|
|
}
|
|
History: {
|
|
grid-columns: 2
|
|
vertical-gap: 70
|
|
|
|
Interceptor: { label: "🔁 gRPC interceptor" }
|
|
Handlers: {
|
|
label: "..."
|
|
style.multiple: true
|
|
}
|
|
}
|
|
}
|
|
|
|
Client -> Server.Frontend.Interceptor: gRPC call
|
|
Server.Frontend.Interceptor -> Server.Frontend.Handlers
|
|
Server.Frontend.Handlers -> Server.Frontend.Client
|
|
Server.Frontend.Client -> Server.History.Interceptor: gRPC call
|
|
Server.History.Interceptor -> Server.History.Handlers |