Skip to content

Commit 1a17b94

Browse files
committed
docs: add adapterInterceptors to RPCLink lifecycle
1 parent b5e327f commit 1a17b94

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

apps/content/docs/client/rpc-link.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,13 +182,17 @@ sequenceDiagram
182182
actor A1 as Client
183183
participant P1 as Input/Output/Error Encoder
184184
participant P2 as Client Sender
185+
participant P3 as Adapter
185186
186187
A1 ->> P1: input, signal, lastEventId, ...
187188
Note over P1: interceptors
188189
P1 ->> P1: encode request
189190
P1 ->> P2: standard request
190191
Note over P2: clientInterceptors
191-
P2 ->> P2: send
192+
P2 ->> P3: adapter request
193+
Note over P3: adapterInterceptors
194+
P3 ->> P3: send
195+
P3 ->> P2: adapter response
192196
P2 ->> P1: standard response
193197
P1 ->> P1: decode response
194198
P1 ->> A1: error/output

0 commit comments

Comments
 (0)