Uses of Class
io.helidon.grpc.core.PriorityBag
-
Packages that use PriorityBag Package Description io.helidon.grpc.client gRPC client API.io.helidon.grpc.core Core classes used by both the reactive gRPC server API and gRPC client API.io.helidon.grpc.server Reactive gRPC server API. -
-
Uses of PriorityBag in io.helidon.grpc.client
Methods in io.helidon.grpc.client that return PriorityBag Modifier and Type Method Description PriorityBag<io.grpc.ClientInterceptor>
ClientServiceDescriptor. interceptors()
Return service interceptors. -
Uses of PriorityBag in io.helidon.grpc.core
Methods in io.helidon.grpc.core that return PriorityBag Modifier and Type Method Description PriorityBag<T>
PriorityBag. copyMe()
Obtain a copy of thisPriorityBag
.static <T> PriorityBag<T>
PriorityBag. create()
Create a newPriorityBag
where elements added with no priority will be last in the order.PriorityBag<T>
PriorityBag. readOnly()
Obtain an immutable copy of thisPriorityBag
.static <T> PriorityBag<T>
PriorityBag. withDefaultPriority(int priority)
Create a newPriorityBag
where elements added with no priority will be be given a default priority value.Methods in io.helidon.grpc.core with parameters of type PriorityBag Modifier and Type Method Description void
PriorityBag. merge(PriorityBag<? extends T> bag)
Merge aPriorityBag
into thisPriorityBag
. -
Uses of PriorityBag in io.helidon.grpc.server
Methods in io.helidon.grpc.server that return PriorityBag Modifier and Type Method Description PriorityBag<io.grpc.ServerInterceptor>
GrpcRouting. interceptors()
Obtain aList
of the globalinterceptors
that should be applied to all services.PriorityBag<io.grpc.ServerInterceptor>
GrpcRoutingImpl. interceptors()
PriorityBag<io.grpc.ServerInterceptor>
MethodDescriptor. interceptors()
Obtain theServerInterceptor
s to use for this method.PriorityBag<io.grpc.ServerInterceptor>
ServiceDescriptor. interceptors()
Return service interceptors.Methods in io.helidon.grpc.server with parameters of type PriorityBag Modifier and Type Method Description void
GrpcServerImpl. deploy(ServiceDescriptor serviceDescriptor, PriorityBag<io.grpc.ServerInterceptor> globalInterceptors)
Deploy the specifiedservice
to thisGrpcServer
.
-