Package io.grpc.internal
Class ScParser
java.lang.Object
io.grpc.NameResolver.ServiceConfigParser
io.grpc.internal.ScParser
The library built-in implementation of service config parser.
-
Constructor Summary
ConstructorsConstructorDescriptionScParser
(boolean retryEnabled, int maxRetryAttemptsLimit, int maxHedgedAttemptsLimit, AutoConfiguredLoadBalancerFactory autoLoadBalancerFactory) Creates a parse with global retry settings and an auto configured lb factory. -
Method Summary
Modifier and TypeMethodDescriptionparseServiceConfig
(Map<String, ?> rawServiceConfig) Parses and validates the service configuration chosen by the name resolver.
-
Constructor Details
-
ScParser
public ScParser(boolean retryEnabled, int maxRetryAttemptsLimit, int maxHedgedAttemptsLimit, AutoConfiguredLoadBalancerFactory autoLoadBalancerFactory) Creates a parse with global retry settings and an auto configured lb factory.
-
-
Method Details
-
parseServiceConfig
Description copied from class:NameResolver.ServiceConfigParser
Parses and validates the service configuration chosen by the name resolver. This will return aNameResolver.ConfigOrError
which contains either the successfully parsed config, or theStatus
representing the failure to parse. Implementations are expected to not throw exceptions but return a Status representing the failure. The value inside theNameResolver.ConfigOrError
should implementequals()
andhashCode()
.- Specified by:
parseServiceConfig
in classNameResolver.ServiceConfigParser
- Parameters:
rawServiceConfig
- TheMap
representation of the service config- Returns:
- a tuple of the fully parsed and validated channel configuration, else the Status.
-