Module io.helidon.grpc.server
Package io.helidon.grpc.server
Interface MethodDescriptor.Configurer<ReqT,ResT>
-
- Type Parameters:
ReqT
- request typeResT
- response type
- All Known Implementing Classes:
GrpcMetrics
- Enclosing class:
- MethodDescriptor<ReqT,ResT>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public static interface MethodDescriptor.Configurer<ReqT,ResT>
An interface implemented by classes that can configure aMethodDescriptor.Rules
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
configure(MethodDescriptor.Rules<ReqT,ResT> rules)
Apply extra configuration to aMethodDescriptor.Rules
.
-
-
-
Method Detail
-
configure
void configure(MethodDescriptor.Rules<ReqT,ResT> rules)
Apply extra configuration to aMethodDescriptor.Rules
.- Parameters:
rules
- theMethodDescriptor.Rules
to configure
-
-