Uses of Class
io.grpc.Channel
Packages that use Channel
Package
Description
The gRPC core public API.
API for the Stub layer.
Utilities with advanced features in the core layer that user can optionally use.
-
Uses of Channel in dev.enola.core.proto
Methods in dev.enola.core.proto with parameters of type ChannelModifier and TypeMethodDescriptionEnolaServiceGrpc.EnolaServiceBlockingStub.build
(Channel channel, CallOptions callOptions) protected EnolaServiceGrpc.EnolaServiceFutureStub
EnolaServiceGrpc.EnolaServiceFutureStub.build
(Channel channel, CallOptions callOptions) protected EnolaServiceGrpc.EnolaServiceStub
EnolaServiceGrpc.EnolaServiceStub.build
(Channel channel, CallOptions callOptions) EnolaServiceGrpc.newBlockingStub
(Channel channel) Creates a new blocking-style stub that supports unary and streaming output calls on the serviceEnolaServiceGrpc.newFutureStub
(Channel channel) Creates a new ListenableFuture-style stub that supports unary calls on the serviceCreates a new async stub that supports all call types for the service -
Uses of Channel in io.grpc
Modifier and TypeMethodDescriptionLoadBalancer.Subchannel.asChannel()
(Internal use only) returns aChannel
that is backed by this Subchannel.static Channel
ClientInterceptors.intercept
(Channel channel, ClientInterceptor... interceptors) Create a newChannel
that will callinterceptors
before starting a call on the given channel.static Channel
ClientInterceptors.intercept
(Channel channel, List<? extends ClientInterceptor> interceptors) Create a newChannel
that will callinterceptors
before starting a call on the given channel.static Channel
ClientInterceptors.interceptForward
(Channel channel, ClientInterceptor... interceptors) Create a newChannel
that will callinterceptors
before starting a call on the given channel.static Channel
ClientInterceptors.interceptForward
(Channel channel, List<? extends ClientInterceptor> interceptors) Create a newChannel
that will callinterceptors
before starting a call on the given channel.abstract Channel
BinaryLog.wrapChannel
(Channel channel) Modifier and TypeMethodDescriptionstatic Channel
ClientInterceptors.intercept
(Channel channel, ClientInterceptor... interceptors) Create a newChannel
that will callinterceptors
before starting a call on the given channel.static Channel
ClientInterceptors.intercept
(Channel channel, List<? extends ClientInterceptor> interceptors) Create a newChannel
that will callinterceptors
before starting a call on the given channel.<ReqT,
RespT>
ClientCall<ReqT, RespT> ClientInterceptor.interceptCall
(MethodDescriptor<ReqT, RespT> method, CallOptions callOptions, Channel next) static Channel
ClientInterceptors.interceptForward
(Channel channel, ClientInterceptor... interceptors) Create a newChannel
that will callinterceptors
before starting a call on the given channel.static Channel
ClientInterceptors.interceptForward
(Channel channel, List<? extends ClientInterceptor> interceptors) Create a newChannel
that will callinterceptors
before starting a call on the given channel.abstract Channel
BinaryLog.wrapChannel
(Channel channel) -
Uses of Channel in io.grpc.stub
Methods in io.grpc.stub that return ChannelModifier and TypeMethodDescriptionfinal Channel
AbstractStub.getChannel()
The underlying channel of the stub.Methods in io.grpc.stub with parameters of type ChannelModifier and TypeMethodDescriptionstatic <ReqT,
RespT>
Iterator<RespT> ClientCalls.blockingServerStreamingCall
(Channel channel, MethodDescriptor<ReqT, RespT> method, CallOptions callOptions, ReqT req) Executes a server-streaming call returning a blockingIterator
over the response stream.static <ReqT,
RespT>
RespTClientCalls.blockingUnaryCall
(Channel channel, MethodDescriptor<ReqT, RespT> method, CallOptions callOptions, ReqT req) Executes a unary call and blocks on the response.protected abstract S
AbstractStub.build
(Channel channel, CallOptions callOptions) Returns a new stub with the given channel for the provided method configurations.static <T extends AbstractStub<T>>
TAbstractAsyncStub.newStub
(AbstractStub.StubFactory<T> factory, Channel channel) Returns a new async stub with the given channel for the provided method configurations.static <T extends AbstractStub<T>>
TAbstractAsyncStub.newStub
(AbstractStub.StubFactory<T> factory, Channel channel, CallOptions callOptions) Returns a new async stub with the given channel for the provided method configurations.static <T extends AbstractStub<T>>
TAbstractBlockingStub.newStub
(AbstractStub.StubFactory<T> factory, Channel channel) Returns a new blocking stub with the given channel for the provided method configurations.static <T extends AbstractStub<T>>
TAbstractBlockingStub.newStub
(AbstractStub.StubFactory<T> factory, Channel channel, CallOptions callOptions) Returns a new blocking stub with the given channel for the provided method configurations.static <T extends AbstractStub<T>>
TAbstractFutureStub.newStub
(AbstractStub.StubFactory<T> factory, Channel channel) Returns a new future stub with the given channel for the provided method configurations.static <T extends AbstractStub<T>>
TAbstractFutureStub.newStub
(AbstractStub.StubFactory<T> factory, Channel channel, CallOptions callOptions) Returns a new future stub with the given channel for the provided method configurations.static <T extends AbstractStub<T>>
TAbstractStub.newStub
(AbstractStub.StubFactory<T> factory, Channel channel) Returns a new stub with the given channel for the provided method configurations.static <T extends AbstractStub<T>>
TAbstractStub.newStub
(AbstractStub.StubFactory<T> factory, Channel channel, CallOptions callOptions) Returns a new stub with the given channel for the provided method configurations.AbstractStub.StubFactory.newStub
(Channel channel, CallOptions callOptions) final S
AbstractStub.withChannel
(Channel newChannel) Deprecated.Constructors in io.grpc.stub with parameters of type ChannelModifierConstructorDescriptionprotected
AbstractAsyncStub
(Channel channel, CallOptions callOptions) protected
AbstractBlockingStub
(Channel channel, CallOptions callOptions) protected
AbstractFutureStub
(Channel channel, CallOptions callOptions) protected
AbstractStub
(Channel channel) Constructor for use by subclasses, with the defaultCallOptions
.protected
AbstractStub
(Channel channel, CallOptions callOptions) Constructor for use by subclasses. -
Uses of Channel in io.grpc.util
Methods in io.grpc.util that return Channel