Uses of Class
io.helidon.grpc.server.GrpcRouting.Builder
Package
Description
Reactive gRPC server API.
Microprofile 1.0 gRPC server implementation.
-
Uses of GrpcRouting.Builder in io.helidon.grpc.server
Modifier and TypeMethodDescriptionstatic GrpcRouting.Builder
GrpcRouting.builder()
Obtain a GrpcRouting builder.GrpcRouting.Builder.intercept
(int priority, io.grpc.ServerInterceptor... interceptors) Add one or more globalServerInterceptor
instances that will intercept calls to all services in theGrpcRouting
built by this builder.GrpcRouting.Builder.intercept
(io.grpc.ServerInterceptor... interceptors) Add one or more globalServerInterceptor
instances that will intercept calls to all services in theGrpcRouting
built by this builder.GrpcRouting.Builder.register
(io.grpc.BindableService service) Add aBindableService
with theGrpcRouting
to be built by this builder.GrpcRouting.Builder.register
(io.grpc.BindableService service, ServiceDescriptor.Configurer configurer) Add aBindableService
with theGrpcRouting
to be built by this builder.GrpcRouting.Builder.register
(GrpcService service) Add aGrpcService
with theGrpcRouting
to be built by this builder.GrpcRouting.Builder.register
(GrpcService service, ServiceDescriptor.Configurer configurer) Add aGrpcService
with theGrpcRouting
to be built by this builder.GrpcRouting.Builder.register
(ServiceDescriptor service) Register aServiceDescriptor
with theGrpcRouting
to be built by this builder. -
Uses of GrpcRouting.Builder in io.helidon.microprofile.grpc.server.spi
Modifier and TypeMethodDescriptionGrpcMpContext.routing()
Obtain theGrpcRouting.Builder
to allow modifications to be made to the routing before the server is configured.