We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
adapterInterceptors
1 parent b5e327f commit 1a17b94Copy full SHA for 1a17b94
apps/content/docs/client/rpc-link.md
@@ -182,13 +182,17 @@ sequenceDiagram
182
actor A1 as Client
183
participant P1 as Input/Output/Error Encoder
184
participant P2 as Client Sender
185
+ participant P3 as Adapter
186
187
A1 ->> P1: input, signal, lastEventId, ...
188
Note over P1: interceptors
189
P1 ->> P1: encode request
190
P1 ->> P2: standard request
191
Note over P2: clientInterceptors
- P2 ->> P2: send
192
+ P2 ->> P3: adapter request
193
+ Note over P3: adapterInterceptors
194
+ P3 ->> P3: send
195
+ P3 ->> P2: adapter response
196
P2 ->> P1: standard response
197
P1 ->> P1: decode response
198
P1 ->> A1: error/output
0 commit comments