Package | Description |
---|---|
io.grpc |
The gRPC core public API.
|
io.grpc.internal |
Interfaces and implementations that are internal to gRPC.
|
Modifier and Type | Method and Description |
---|---|
static <ReqT,RespT> |
InternalClientInterceptors.wrapClientInterceptor(ClientInterceptor interceptor,
MethodDescriptor.Marshaller<ReqT> reqMarshaller,
MethodDescriptor.Marshaller<RespT> respMarshaller) |
Modifier and Type | Method and Description |
---|---|
static Channel |
ClientInterceptors.intercept(Channel channel,
ClientInterceptor... interceptors)
Create a new
Channel that will call interceptors before starting a call on the
given channel. |
T |
ForwardingChannelBuilder.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 new
Channel that will call interceptors before starting a call on the
given channel. |
static <ReqT,RespT> |
InternalClientInterceptors.wrapClientInterceptor(ClientInterceptor interceptor,
MethodDescriptor.Marshaller<ReqT> reqMarshaller,
MethodDescriptor.Marshaller<RespT> respMarshaller) |
Modifier and Type | Method and Description |
---|---|
static Channel |
ClientInterceptors.intercept(Channel channel,
List<? extends ClientInterceptor> interceptors)
Create a new
Channel that will call interceptors before starting a call on the
given channel. |
T |
ForwardingChannelBuilder.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 new
Channel that will call interceptors before starting a call on the
given channel. |
Modifier and Type | Method and Description |
---|---|
T |
AbstractManagedChannelImplBuilder.intercept(ClientInterceptor... interceptors) |
Modifier and Type | Method and Description |
---|---|
T |
AbstractManagedChannelImplBuilder.intercept(List<ClientInterceptor> interceptors) |
Copyright © 2018. All rights reserved.