Module io.helidon.webclient.grpc
Package io.helidon.webclient.grpc
Interface GrpcClientMethodDescriptor.Rules
- All Known Implementing Classes:
GrpcClientMethodDescriptor.Builder
- Enclosing class:
GrpcClientMethodDescriptor
public static interface GrpcClientMethodDescriptor.Rules
ClientMethod configuration API.
-
Method Summary
Modifier and TypeMethodDescriptioncallCredentials
(io.grpc.CallCredentials callCredentials) Register the specifiedCallCredentials
to be used for this method.intercept
(double weight, io.grpc.ClientInterceptor... interceptors) Register one or moreinterceptors
for the method.intercept
(io.grpc.ClientInterceptor... interceptors) Register one or moreinterceptors
for the method.marshallerSupplier
(MarshallerSupplier marshallerSupplier) Register theMarshallerSupplier
for the method.methodHandler
(MethodHandler<?, ?> methodHandler) Set theMethodHandler
that can be used to invoke the method.requestType
(Class<?> type) Sets the type of parameter of this method.responseType
(Class<?> type) Sets the type of parameter of this method.
-
Method Details
-
requestType
Sets the type of parameter of this method.- Parameters:
type
- The type of parameter of this method.- Returns:
- this
GrpcClientMethodDescriptor.Rules
instance for fluent call chaining
-
responseType
Sets the type of parameter of this method.- Parameters:
type
- The type of parameter of this method.- Returns:
- this
GrpcClientMethodDescriptor.Rules
instance for fluent call chaining
-
intercept
Register one or moreinterceptors
for the method.- Parameters:
interceptors
- the interceptor(s) to register- Returns:
- this
GrpcClientMethodDescriptor.Rules
instance for fluent call chaining
-
intercept
GrpcClientMethodDescriptor.Rules intercept(double weight, io.grpc.ClientInterceptor... interceptors) Register one or moreinterceptors
for the method.The added interceptors will be applied using the specified priority.
- Parameters:
weight
- the weight to assign to the interceptorsinterceptors
- one or moreClientInterceptor
s to register- Returns:
- this
GrpcClientMethodDescriptor.Rules
to allow fluent method chaining
-
marshallerSupplier
Register theMarshallerSupplier
for the method.If not set the default
MarshallerSupplier
from the service will be used.- Parameters:
marshallerSupplier
- theMarshallerSupplier
for the service- Returns:
- this
GrpcClientMethodDescriptor.Rules
instance for fluent call chaining
-
callCredentials
Register the specifiedCallCredentials
to be used for this method. This overrides anyCallCredentials
set on theGrpcClientMethodDescriptor
.- Parameters:
callCredentials
- theCallCredentials
to set.- Returns:
- this
GrpcClientMethodDescriptor.Rules
instance for fluent call chaining
-
methodHandler
Set theMethodHandler
that can be used to invoke the method.- Parameters:
methodHandler
- the {2link MethodHandler} to use- Returns:
- this
GrpcClientMethodDescriptor.Rules
instance for fluent call chaining
-