Uses of Interface
io.grpc.ClientInterceptor
-
-
Uses of ClientInterceptor in io.grpc
Methods in io.grpc that return ClientInterceptor Modifier and Type Method Description ClientInterceptor
ManagedChannelBuilder.InterceptorFactory. newInterceptor(String target)
Methods in io.grpc with parameters of type ClientInterceptor Modifier and Type Method Description static Channel
ClientInterceptors. intercept(Channel channel, ClientInterceptor... interceptors)
Create a newChannel
that will callinterceptors
before starting a call on the given channel.T
ForwardingChannelBuilder. intercept(ClientInterceptor... interceptors)
T
ForwardingChannelBuilder2. intercept(ClientInterceptor... interceptors)
abstract T
ManagedChannelBuilder. intercept(ClientInterceptor... interceptors)
Adds interceptors that will be called before the channel performs its real work.static Channel
ClientInterceptors. interceptForward(Channel channel, ClientInterceptor... interceptors)
Create a newChannel
that will callinterceptors
before starting a call on the given channel.Method parameters in io.grpc with type arguments of type ClientInterceptor Modifier and Type Method Description static Channel
ClientInterceptors. intercept(Channel channel, List<? extends ClientInterceptor> interceptors)
Create a newChannel
that will callinterceptors
before starting a call on the given channel.T
ForwardingChannelBuilder. intercept(List<ClientInterceptor> interceptors)
T
ForwardingChannelBuilder2. intercept(List<ClientInterceptor> interceptors)
abstract T
ManagedChannelBuilder. intercept(List<ClientInterceptor> interceptors)
Adds interceptors that will be called before the channel performs its real work.static Channel
ClientInterceptors. interceptForward(Channel channel, List<? extends ClientInterceptor> interceptors)
Create a newChannel
that will callinterceptors
before starting a call on the given channel.
-