From 2dd4b9e2e4350c6d1364c9d231be8637c3db7199 Mon Sep 17 00:00:00 2001 From: Chris Bono Date: Mon, 9 Jun 2025 15:29:55 -0500 Subject: [PATCH] Adjust verbiage Signed-off-by: Chris Bono --- .../src/main/antora/modules/ROOT/pages/client.adoc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/spring-grpc-docs/src/main/antora/modules/ROOT/pages/client.adoc b/spring-grpc-docs/src/main/antora/modules/ROOT/pages/client.adoc index 4140ff1..e4a0add 100644 --- a/spring-grpc-docs/src/main/antora/modules/ROOT/pages/client.adoc +++ b/spring-grpc-docs/src/main/antora/modules/ROOT/pages/client.adoc @@ -133,10 +133,11 @@ dependencies { [[in-process-channel]] == InProcess Channel -You can communicate with an link:server.adoc#in-process-server[in-process server factory] (i.e. not listening on a network port) by including the `io.grpc.grpc-inprocess` dependency on your classpath. +You can communicate with an link:server.adoc#in-process-server[in-process server] (i.e. not listening on a network port) by including the `io.grpc.grpc-inprocess` dependency on your classpath. In this mode, the in-process channel factory is auto-configured in *addition* to the regular channel factories (e.g. Netty). -However, to prevent users from having to deal with multiple channel factory, a composite channel factory has been introduced which consults its composed factories to find the first one that supports the channel target. +However, to prevent users from having to deal with multiple channel factories, a composite channel factory is configured as the primary channel factory bean. +The composite consults its composed factories to find the first one that supports the channel target. NOTE: To use the inprocess server the channel target must be set to `in-process://`