aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/client_config/README.md
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-06-23 10:56:11 -0700
committerGravatar Craig Tiller <ctiller@google.com>2015-06-23 10:56:11 -0700
commit9e8f9115c4e416a5ce3735e0b6cc47fce04973ef (patch)
tree3a781254638e69e95df637ed67e412af1a1413d3 /src/core/client_config/README.md
parent9d0e047a5caba99194e6ed377ac0234f3907d6a3 (diff)
Rename configured_subchannel --> subchannel
Per @a11r's request
Diffstat (limited to 'src/core/client_config/README.md')
-rw-r--r--src/core/client_config/README.md23
1 files changed, 11 insertions, 12 deletions
diff --git a/src/core/client_config/README.md b/src/core/client_config/README.md
index 316f9b1cc9..7cb19cd130 100644
--- a/src/core/client_config/README.md
+++ b/src/core/client_config/README.md
@@ -25,21 +25,20 @@ Load balancing configuration is provided by a grpc_lb_policy object, stored as
part of grpc_client_config.
A load balancing policies primary job is to pick a target server given only the
-initial metadata for a request. It does this by providing a
-grpc_configured_channel object to the owning channel.
+initial metadata for a request. It does this by providing a grpc_subchannel
+object to the owning channel.
-Configured Sub-Channels
------------------------
+Sub-Channels
+------------
-A configured sub-channel provides a connection to a server for a client
-channel. It has a connectivity state like a regular channel, and so can be
-connected or disconnected. This connectivity state can be used to inform load
-balancing decisions (for example, by avoiding disconnected backends).
+A sub-channel provides a connection to a server for a client channel. It has a
+connectivity state like a regular channel, and so can be connected or
+disconnected. This connectivity state can be used to inform load balancing
+decisions (for example, by avoiding disconnected backends).
Configured sub-channels are fully setup to participate in the grpc data plane.
Their behavior is specified by a set of grpc channel filters defined at their
-construction. To customize this behavior, resolvers build
-grpc_configured_subchannel_factory objects, which use the decorator pattern
-to customize construction arguments for concrete grpc_configured_subchannel
-instances.
+construction. To customize this behavior, resolvers build grpc_subchannel_factory
+objects, which use the decorator pattern to customize construction arguments for
+concrete grpc_subchannel instances.