Class ClientStreamingMethodHandlerSupplier
java.lang.Object
io.helidon.microprofile.grpc.core.ClientStreamingMethodHandlerSupplier
- All Implemented Interfaces:
MethodHandlerSupplier
A supplier of
MethodHandlers for client streaming gRPC methods.-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classA base class for client streamingMethodHandlers.static classA client streamingMethodHandlerthat calls a standard client streaming method handler method of the form.static classA client side only client streamingMethodHandlerthat streams requests from an iterable.static classA client side only client streamingMethodHandlerthat streams requests from a stream.static classA client streamingMethodHandlerthat calls a standard client streaming method handler method of the form. -
Constructor Summary
ConstructorsConstructorDescriptionCreate a supplier of handlers for client streaming methods. -
Method Summary
Modifier and TypeMethodDescription<ReqT,RespT>
MethodHandler<ReqT,RespT> get(String methodName, AnnotatedMethod method, Supplier<?> instance) Supply aMethodHandlerfor a method.booleansupplies(AnnotatedMethod method) Determine whether thisMethodHandlerSuppliercan supply aMethodHandlerfor a given method and type.
-
Constructor Details
-
ClientStreamingMethodHandlerSupplier
public ClientStreamingMethodHandlerSupplier()Create a supplier of handlers for client streaming methods.
-
-
Method Details
-
supplies
Description copied from interface:MethodHandlerSupplierDetermine whether thisMethodHandlerSuppliercan supply aMethodHandlerfor a given method and type.- Specified by:
suppliesin interfaceMethodHandlerSupplier- Parameters:
method- theAnnotatedMethodto supply a handler for- Returns:
trueif this supplier can supply a handler for the method
-
get
public <ReqT,RespT> MethodHandler<ReqT,RespT> get(String methodName, AnnotatedMethod method, Supplier<?> instance) Description copied from interface:MethodHandlerSupplierSupply aMethodHandlerfor a method.- Type Parameters:
ReqT- the request typeRespT- the response type- Parameters:
methodName- the gRPC method namemethod- the method to supply aMethodHandlerforinstance- the supplier to supply the actual call handler- Returns:
- a
MethodHandlerfor the method
-