Package io.grpc.testing.integration
Class UnimplementedServiceGrpc
- java.lang.Object
-
- io.grpc.testing.integration.UnimplementedServiceGrpc
-
public final class UnimplementedServiceGrpc extends java.lang.ObjectA simple service NOT implemented at servers so clients can test for that case.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceUnimplementedServiceGrpc.AsyncServiceA simple service NOT implemented at servers so clients can test for that case.static classUnimplementedServiceGrpc.UnimplementedServiceBlockingStubA stub to allow clients to do synchronous rpc calls to service UnimplementedService.static classUnimplementedServiceGrpc.UnimplementedServiceFutureStubA stub to allow clients to do ListenableFuture-style rpc calls to service UnimplementedService.static classUnimplementedServiceGrpc.UnimplementedServiceImplBaseBase class for the server implementation of the service UnimplementedService.static classUnimplementedServiceGrpc.UnimplementedServiceStubA stub to allow clients to do asynchronous rpc calls to service UnimplementedService.
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringSERVICE_NAME
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static io.grpc.ServerServiceDefinitionbindService(UnimplementedServiceGrpc.AsyncService service)static io.grpc.ServiceDescriptorgetServiceDescriptor()static io.grpc.MethodDescriptor<EmptyProtos.Empty,EmptyProtos.Empty>getUnimplementedCallMethod()static UnimplementedServiceGrpc.UnimplementedServiceBlockingStubnewBlockingStub(io.grpc.Channel channel)Creates a new blocking-style stub that supports unary and streaming output calls on the servicestatic UnimplementedServiceGrpc.UnimplementedServiceFutureStubnewFutureStub(io.grpc.Channel channel)Creates a new ListenableFuture-style stub that supports unary calls on the servicestatic UnimplementedServiceGrpc.UnimplementedServiceStubnewStub(io.grpc.Channel channel)Creates a new async stub that supports all call types for the service
-
-
-
Field Detail
-
SERVICE_NAME
public static final java.lang.String SERVICE_NAME
- See Also:
- Constant Field Values
-
-
Method Detail
-
getUnimplementedCallMethod
public static io.grpc.MethodDescriptor<EmptyProtos.Empty,EmptyProtos.Empty> getUnimplementedCallMethod()
-
newStub
public static UnimplementedServiceGrpc.UnimplementedServiceStub newStub(io.grpc.Channel channel)
Creates a new async stub that supports all call types for the service
-
newBlockingStub
public static UnimplementedServiceGrpc.UnimplementedServiceBlockingStub newBlockingStub(io.grpc.Channel channel)
Creates a new blocking-style stub that supports unary and streaming output calls on the service
-
newFutureStub
public static UnimplementedServiceGrpc.UnimplementedServiceFutureStub newFutureStub(io.grpc.Channel channel)
Creates a new ListenableFuture-style stub that supports unary calls on the service
-
bindService
public static final io.grpc.ServerServiceDefinition bindService(UnimplementedServiceGrpc.AsyncService service)
-
getServiceDescriptor
public static io.grpc.ServiceDescriptor getServiceDescriptor()
-
-