Uses of Class
io.helidon.grpc.core.PriorityBag
Packages that use PriorityBag
Package
Description
gRPC client API.
Core classes used by both the reactive gRPC server API and gRPC client API.
Reactive gRPC server API.
-
Uses of PriorityBag in io.helidon.grpc.client
Methods in io.helidon.grpc.client that return PriorityBagModifier and TypeMethodDescriptionPriorityBag<io.grpc.ClientInterceptor>ClientServiceDescriptor.interceptors()Return service interceptors. -
Uses of PriorityBag in io.helidon.grpc.core
Methods in io.helidon.grpc.core that return PriorityBagModifier and TypeMethodDescriptionPriorityBag.copyMe()Obtain a copy of thisPriorityBag.static <T> PriorityBag<T>PriorityBag.create()Create a newPriorityBagwhere elements added with no priority will be last in the order.PriorityBag.readOnly()Obtain an immutable copy of thisPriorityBag.static <T> PriorityBag<T>PriorityBag.withDefaultPriority(int priority) Create a newPriorityBagwhere elements added with no priority will be be given a default priority value.Methods in io.helidon.grpc.core with parameters of type PriorityBagModifier and TypeMethodDescriptionvoidPriorityBag.merge(PriorityBag<? extends T> bag) Merge aPriorityBaginto thisPriorityBag. -
Uses of PriorityBag in io.helidon.grpc.server
Methods in io.helidon.grpc.server that return PriorityBagModifier and TypeMethodDescriptionPriorityBag<io.grpc.ServerInterceptor>GrpcRouting.interceptors()Obtain aListof the globalinterceptorsthat should be applied to all services.PriorityBag<io.grpc.ServerInterceptor>GrpcRoutingImpl.interceptors()PriorityBag<io.grpc.ServerInterceptor>MethodDescriptor.interceptors()Obtain theServerInterceptors to use for this method.PriorityBag<io.grpc.ServerInterceptor>ServiceDescriptor.interceptors()Return service interceptors.Methods in io.helidon.grpc.server with parameters of type PriorityBagModifier and TypeMethodDescriptionvoidGrpcServerImpl.deploy(ServiceDescriptor serviceDescriptor, PriorityBag<io.grpc.ServerInterceptor> globalInterceptors) Deploy the specifiedserviceto thisGrpcServer.