public class ClientCalls extends Object
Modifier and Type | Method and Description |
---|---|
static <ReqT,RespT> |
asyncBidiStreamingCall(ClientCall<ReqT,RespT> call,
StreamObserver<RespT> responseObserver)
Executes a bidi-streaming call.
|
static <ReqT,RespT> |
asyncClientStreamingCall(ClientCall<ReqT,RespT> call,
StreamObserver<RespT> responseObserver)
Executes a client-streaming call returning a
StreamObserver for the request messages. |
static <ReqT,RespT> |
asyncServerStreamingCall(ClientCall<ReqT,RespT> call,
ReqT param,
StreamObserver<RespT> responseObserver)
Executes a server-streaming call with a response
StreamObserver . |
static <ReqT,RespT> |
asyncUnaryCall(ClientCall<ReqT,RespT> call,
ReqT param,
StreamObserver<RespT> observer)
Executes a unary call with a response
StreamObserver . |
static <ReqT,RespT> |
blockingServerStreamingCall(Channel channel,
MethodDescriptor<ReqT,RespT> method,
CallOptions callOptions,
ReqT param)
Executes a server-streaming call returning a blocking
Iterator over the
response stream. |
static <ReqT,RespT> |
blockingServerStreamingCall(ClientCall<ReqT,RespT> call,
ReqT param)
Executes a server-streaming call returning a blocking
Iterator over the
response stream. |
static <ReqT,RespT> |
blockingUnaryCall(Channel channel,
MethodDescriptor<ReqT,RespT> method,
CallOptions callOptions,
ReqT param)
Executes a unary call and blocks on the response.
|
static <ReqT,RespT> |
blockingUnaryCall(ClientCall<ReqT,RespT> call,
ReqT param)
Executes a unary call and blocks on the response.
|
static <ReqT,RespT> |
futureUnaryCall(ClientCall<ReqT,RespT> call,
ReqT param)
Executes a unary call and returns a
ListenableFuture to the response. |
public static <ReqT,RespT> void asyncUnaryCall(ClientCall<ReqT,RespT> call, ReqT param, StreamObserver<RespT> observer)
StreamObserver
.public static <ReqT,RespT> void asyncServerStreamingCall(ClientCall<ReqT,RespT> call, ReqT param, StreamObserver<RespT> responseObserver)
StreamObserver
.public static <ReqT,RespT> StreamObserver<ReqT> asyncClientStreamingCall(ClientCall<ReqT,RespT> call, StreamObserver<RespT> responseObserver)
StreamObserver
for the request messages.public static <ReqT,RespT> StreamObserver<ReqT> asyncBidiStreamingCall(ClientCall<ReqT,RespT> call, StreamObserver<RespT> responseObserver)
public static <ReqT,RespT> RespT blockingUnaryCall(ClientCall<ReqT,RespT> call, ReqT param)
public static <ReqT,RespT> RespT blockingUnaryCall(Channel channel, MethodDescriptor<ReqT,RespT> method, CallOptions callOptions, ReqT param)
public static <ReqT,RespT> Iterator<RespT> blockingServerStreamingCall(ClientCall<ReqT,RespT> call, ReqT param)
Iterator
over the
response stream.public static <ReqT,RespT> Iterator<RespT> blockingServerStreamingCall(Channel channel, MethodDescriptor<ReqT,RespT> method, CallOptions callOptions, ReqT param)
Iterator
over the
response stream.public static <ReqT,RespT> ListenableFuture<RespT> futureUnaryCall(ClientCall<ReqT,RespT> call, ReqT param)
ListenableFuture
to the response.