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.
1 parent 62e53cd commit e659a25Copy full SHA for e659a25
docs/internal/GeneralArchitectureGuide.md
@@ -42,6 +42,9 @@ were left unconsumed.
42
6. The response is written to the `RestChannel`, either as a [single payload][RestToXContentListener] or a
43
[stream of chunks][RestChunkedToXContentListener].
44
45
+A Netty channel eventLoop thread executes step 1 to 3. The [RestChannelConsumer] delegates execution to a task manager thread, which processes
46
+the request and eventually returns control to the original event loop thread to write the response back to the Netty channel.
47
+
48
### Request interceptor
49
50
The [RestController] accepts a [RestInterceptor] that can intercept [RestRequest]s and add additional pre-handling. A single
0 commit comments