Uses of Class
io.grpc.MethodDescriptor.MethodType
-
Packages that use MethodDescriptor.MethodType Package Description io.grpc The gRPC core public API.io.grpc.stub.annotations -
-
Uses of MethodDescriptor.MethodType in io.grpc
Fields in io.grpc declared as MethodDescriptor.MethodType Modifier and Type Field Description private MethodDescriptor.MethodType
MethodDescriptor.Builder. type
private MethodDescriptor.MethodType
MethodDescriptor. type
Methods in io.grpc that return MethodDescriptor.MethodType Modifier and Type Method Description MethodDescriptor.MethodType
MethodDescriptor. getType()
The call type of the method.static MethodDescriptor.MethodType
MethodDescriptor.MethodType. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static MethodDescriptor.MethodType[]
MethodDescriptor.MethodType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in io.grpc with parameters of type MethodDescriptor.MethodType Modifier and Type Method Description static <RequestT,ResponseT>
MethodDescriptor<RequestT,ResponseT>MethodDescriptor. create(MethodDescriptor.MethodType type, java.lang.String fullMethodName, MethodDescriptor.Marshaller<RequestT> requestMarshaller, MethodDescriptor.Marshaller<ResponseT> responseMarshaller)
Deprecated.MethodDescriptor.Builder<ReqT,RespT>
MethodDescriptor.Builder. setType(MethodDescriptor.MethodType type)
Sets the method type.Constructors in io.grpc with parameters of type MethodDescriptor.MethodType Constructor Description MethodDescriptor(MethodDescriptor.MethodType type, java.lang.String fullMethodName, MethodDescriptor.Marshaller<ReqT> requestMarshaller, MethodDescriptor.Marshaller<RespT> responseMarshaller, java.lang.Object schemaDescriptor, boolean idempotent, boolean safe, boolean sampledToLocalTracing)
-
Uses of MethodDescriptor.MethodType in io.grpc.stub.annotations
Methods in io.grpc.stub.annotations that return MethodDescriptor.MethodType Modifier and Type Method Description MethodDescriptor.MethodType
methodType()
The call type of the method.
-