Uses of Class
io.helidon.microprofile.grpc.core.AnnotatedMethod
-
Packages that use AnnotatedMethod Package Description io.helidon.microprofile.grpc.core Core gRPC microprofile classes. -
-
Uses of AnnotatedMethod in io.helidon.microprofile.grpc.core
Methods in io.helidon.microprofile.grpc.core that return AnnotatedMethod Modifier and Type Method Description static AnnotatedMethod
AnnotatedMethod. create(Method method)
Create anAnnotatedMethod
instance from aJava method
.Methods in io.helidon.microprofile.grpc.core that return types with arguments of type AnnotatedMethod Modifier and Type Method Description Iterator<AnnotatedMethod>
AnnotatedMethodList. iterator()
Iterator over the list ofannotated methods
contained in this method list.Stream<AnnotatedMethod>
AnnotatedMethodList. stream()
Methods in io.helidon.microprofile.grpc.core with parameters of type AnnotatedMethod Modifier and Type Method Description static String
AbstractServiceBuilder. determineMethodName(AnnotatedMethod method, GrpcMethod annotation)
Determine the name to use from the method.<ReqT,RespT>
MethodHandler<ReqT,RespT>BidirectionalMethodHandlerSupplier. get(String methodName, AnnotatedMethod method, Supplier<?> instance)
<ReqT,RespT>
MethodHandler<ReqT,RespT>ClientStreamingMethodHandlerSupplier. get(String methodName, AnnotatedMethod method, Supplier<?> instance)
<ReqT,RespT>
MethodHandler<ReqT,RespT>MethodHandlerSupplier. get(String methodName, AnnotatedMethod method, Supplier<?> instance)
Supply aMethodHandler
for a method.<ReqT,RespT>
MethodHandler<ReqT,RespT>ServerStreamingMethodHandlerSupplier. get(String methodName, AnnotatedMethod method, Supplier<?> instance)
<ReqT,RespT>
MethodHandler<ReqT,RespT>UnaryMethodHandlerSupplier. get(String methodName, AnnotatedMethod method, Supplier<?> instance)
boolean
BidirectionalMethodHandlerSupplier. supplies(AnnotatedMethod method)
boolean
ClientStreamingMethodHandlerSupplier. supplies(AnnotatedMethod method)
boolean
MethodHandlerSupplier. supplies(AnnotatedMethod method)
Determine whether thisMethodHandlerSupplier
can supply aMethodHandler
for a given method and type.boolean
ServerStreamingMethodHandlerSupplier. supplies(AnnotatedMethod method)
boolean
UnaryMethodHandlerSupplier. supplies(AnnotatedMethod method)
Method parameters in io.helidon.microprofile.grpc.core with type arguments of type AnnotatedMethod Modifier and Type Method Description AnnotatedMethodList
AnnotatedMethodList. filter(Predicate<AnnotatedMethod> predicate)
Created a new method list containing only the methods supported by themethod list predicate
.
-