Package io.grpc.stub
Class ServerCalls
- java.lang.Object
-
- io.grpc.stub.ServerCalls
-
public final class ServerCalls extends Object
Utility functions for adaptingServerCallHandler
s to application service implementation, meant to be used by the generated code.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interface
ServerCalls.BidiStreamingMethod<ReqT,RespT>
Adaptor to a bidirectional streaming method.static interface
ServerCalls.ClientStreamingMethod<ReqT,RespT>
Adaptor to a client streaming method.static interface
ServerCalls.ServerStreamingMethod<ReqT,RespT>
Adaptor to a server streaming method.static interface
ServerCalls.UnaryMethod<ReqT,RespT>
Adaptor to a unary call method.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static <ReqT,RespT>
ServerCallHandler<ReqT,RespT>asyncBidiStreamingCall(ServerCalls.BidiStreamingMethod<ReqT,RespT> method)
Creates aServerCallHandler
for a bidi streaming method of the service.static <ReqT,RespT>
ServerCallHandler<ReqT,RespT>asyncClientStreamingCall(ServerCalls.ClientStreamingMethod<ReqT,RespT> method)
Creates aServerCallHandler
for a client streaming method of the service.static <ReqT,RespT>
ServerCallHandler<ReqT,RespT>asyncServerStreamingCall(ServerCalls.ServerStreamingMethod<ReqT,RespT> method)
Creates aServerCallHandler
for a server streaming method of the service.static <ReqT,RespT>
ServerCallHandler<ReqT,RespT>asyncUnaryCall(ServerCalls.UnaryMethod<ReqT,RespT> method)
Creates aServerCallHandler
for a unary call method of the service.static <ReqT> StreamObserver<ReqT>
asyncUnimplementedStreamingCall(MethodDescriptor<?,?> methodDescriptor, StreamObserver<?> responseObserver)
Sets unimplemented status for streaming call.static void
asyncUnimplementedUnaryCall(MethodDescriptor<?,?> methodDescriptor, StreamObserver<?> responseObserver)
Sets unimplemented status for method on given response stream for unary call.
-
-
-
Method Detail
-
asyncUnaryCall
public static <ReqT,RespT> ServerCallHandler<ReqT,RespT> asyncUnaryCall(ServerCalls.UnaryMethod<ReqT,RespT> method)
Creates aServerCallHandler
for a unary call method of the service.- Parameters:
method
- an adaptor to the actual method on the service implementation.
-
asyncServerStreamingCall
public static <ReqT,RespT> ServerCallHandler<ReqT,RespT> asyncServerStreamingCall(ServerCalls.ServerStreamingMethod<ReqT,RespT> method)
Creates aServerCallHandler
for a server streaming method of the service.- Parameters:
method
- an adaptor to the actual method on the service implementation.
-
asyncClientStreamingCall
public static <ReqT,RespT> ServerCallHandler<ReqT,RespT> asyncClientStreamingCall(ServerCalls.ClientStreamingMethod<ReqT,RespT> method)
Creates aServerCallHandler
for a client streaming method of the service.- Parameters:
method
- an adaptor to the actual method on the service implementation.
-
asyncBidiStreamingCall
public static <ReqT,RespT> ServerCallHandler<ReqT,RespT> asyncBidiStreamingCall(ServerCalls.BidiStreamingMethod<ReqT,RespT> method)
Creates aServerCallHandler
for a bidi streaming method of the service.- Parameters:
method
- an adaptor to the actual method on the service implementation.
-
asyncUnimplementedUnaryCall
public static void asyncUnimplementedUnaryCall(MethodDescriptor<?,?> methodDescriptor, StreamObserver<?> responseObserver)
Sets unimplemented status for method on given response stream for unary call.- Parameters:
methodDescriptor
- of method for which error will be thrown.responseObserver
- on which error will be set.
-
asyncUnimplementedStreamingCall
public static <ReqT> StreamObserver<ReqT> asyncUnimplementedStreamingCall(MethodDescriptor<?,?> methodDescriptor, StreamObserver<?> responseObserver)
Sets unimplemented status for streaming call.- Parameters:
methodDescriptor
- of method for which error will be thrown.responseObserver
- on which error will be set.
-
-