Uses of Class
io.helidon.grpc.server.GrpcRouting.Builder
Packages that use GrpcRouting.Builder
Package
Description
Reactive gRPC server API.
Microprofile 1.0 gRPC server implementation.
-
Uses of GrpcRouting.Builder in io.helidon.grpc.server
Methods in io.helidon.grpc.server that return GrpcRouting.BuilderModifier and TypeMethodDescriptionstatic GrpcRouting.BuilderGrpcRouting.builder()Obtain a GrpcRouting builder.GrpcRouting.Builder.intercept(int priority, io.grpc.ServerInterceptor... interceptors) Add one or more globalServerInterceptorinstances that will intercept calls to all services in theGrpcRoutingbuilt by this builder.GrpcRouting.Builder.intercept(io.grpc.ServerInterceptor... interceptors) Add one or more globalServerInterceptorinstances that will intercept calls to all services in theGrpcRoutingbuilt by this builder.GrpcRouting.Builder.register(io.grpc.BindableService service) Add aBindableServicewith theGrpcRoutingto be built by this builder.GrpcRouting.Builder.register(io.grpc.BindableService service, ServiceDescriptor.Configurer configurer) Add aBindableServicewith theGrpcRoutingto be built by this builder.GrpcRouting.Builder.register(GrpcService service) Add aGrpcServicewith theGrpcRoutingto be built by this builder.GrpcRouting.Builder.register(GrpcService service, ServiceDescriptor.Configurer configurer) Add aGrpcServicewith theGrpcRoutingto be built by this builder.GrpcRouting.Builder.register(ServiceDescriptor service) Register aServiceDescriptorwith theGrpcRoutingto be built by this builder. -
Uses of GrpcRouting.Builder in io.helidon.microprofile.grpc.server.spi
Methods in io.helidon.microprofile.grpc.server.spi that return GrpcRouting.BuilderModifier and TypeMethodDescriptionGrpcMpContext.routing()Obtain theGrpcRouting.Builderto allow modifications to be made to the routing before the server is configured.