Uses of Interface
io.grpc.MethodDescriptor.Marshaller
Packages that use MethodDescriptor.Marshaller
Package
Description
The gRPC core public API.
API for gRPC over Protocol Buffers, including tools for serializing and de-serializing protobuf
messages.
API for gRPC over Protocol Buffers with proto message classes generated by the Lite Runtime
library.
Service definitions and utilities with protobuf dependency for the pre-defined gRPC services.
-
Uses of MethodDescriptor.Marshaller in io.grpc
Subinterfaces of MethodDescriptor.Marshaller in io.grpcModifier and TypeInterfaceDescriptionstatic interfaceA marshaller that uses a fixed instance of the type it produces.static interfaceA marshaller that supports retrieving its type parameterTat runtime.Fields in io.grpc declared as MethodDescriptor.MarshallerModifier and TypeFieldDescriptionprivate MethodDescriptor.Marshaller<ReqT> MethodDescriptor.Builder.requestMarshallerprivate final MethodDescriptor.Marshaller<ReqT> MethodDescriptor.requestMarshallerprivate MethodDescriptor.Marshaller<RespT> MethodDescriptor.Builder.responseMarshallerprivate final MethodDescriptor.Marshaller<RespT> MethodDescriptor.responseMarshallerMethods in io.grpc that return MethodDescriptor.MarshallerModifier and TypeMethodDescriptionMethodDescriptor.getRequestMarshaller()Returns the marshaller for the request type.MethodDescriptor.getResponseMarshaller()Returns the marshaller for the response type.Methods in io.grpc with parameters of type MethodDescriptor.MarshallerModifier and TypeMethodDescriptionstatic <RequestT,ResponseT>
MethodDescriptor<RequestT, ResponseT> MethodDescriptor.create(MethodDescriptor.MethodType type, String fullMethodName, MethodDescriptor.Marshaller<RequestT> requestMarshaller, MethodDescriptor.Marshaller<ResponseT> responseMarshaller) Deprecated.static <ReqT,RespT>
MethodDescriptor.Builder<ReqT, RespT> MethodDescriptor.newBuilder(MethodDescriptor.Marshaller<ReqT> requestMarshaller, MethodDescriptor.Marshaller<RespT> responseMarshaller) Creates a new builder for aMethodDescriptor.MethodDescriptor.Builder.setRequestMarshaller(MethodDescriptor.Marshaller<ReqT> requestMarshaller) Sets the request marshaller.MethodDescriptor.Builder.setResponseMarshaller(MethodDescriptor.Marshaller<RespT> responseMarshaller) Sets the response marshaller.<NewReqT,NewRespT>
MethodDescriptor.Builder<NewReqT, NewRespT> MethodDescriptor.toBuilder(MethodDescriptor.Marshaller<NewReqT> requestMarshaller, MethodDescriptor.Marshaller<NewRespT> responseMarshaller) Turns this descriptor into a builder, replacing the request and response marshallers.static <ReqT,RespT>
ServerServiceDefinitionServerInterceptors.useMarshalledMessages(ServerServiceDefinition serviceDef, MethodDescriptor.Marshaller<ReqT> requestMarshaller, MethodDescriptor.Marshaller<RespT> responseMarshaller) Create a newServerServiceDefinitionwithMethodDescriptorfor deserializing requests and separateMethodDescriptorfor serializing responses.static <T> ServerServiceDefinitionServerInterceptors.useMarshalledMessages(ServerServiceDefinition serviceDef, MethodDescriptor.Marshaller<T> marshaller) Create a newServerServiceDefinitionwhoseMethodDescriptorserializes to and from T for all methods.(package private) static <WReqT,WRespT>
ClientInterceptorClientInterceptors.wrapClientInterceptor(ClientInterceptor interceptor, MethodDescriptor.Marshaller<WReqT> reqMarshaller, MethodDescriptor.Marshaller<WRespT> respMarshaller) Creates a new ClientInterceptor that transforms requests intoWReqTand responses intoWRespTbefore passing them into theinterceptor.static <ReqT,RespT>
ClientInterceptorInternalClientInterceptors.wrapClientInterceptor(ClientInterceptor interceptor, MethodDescriptor.Marshaller<ReqT> reqMarshaller, MethodDescriptor.Marshaller<RespT> respMarshaller) Constructors in io.grpc with parameters of type MethodDescriptor.MarshallerModifierConstructorDescriptionprivateMethodDescriptor(MethodDescriptor.MethodType type, String fullMethodName, MethodDescriptor.Marshaller<ReqT> requestMarshaller, MethodDescriptor.Marshaller<RespT> responseMarshaller, Object schemaDescriptor, boolean idempotent, boolean safe, boolean sampledToLocalTracing) -
Uses of MethodDescriptor.Marshaller in io.grpc.protobuf
Methods in io.grpc.protobuf that return MethodDescriptor.MarshallerModifier and TypeMethodDescriptionstatic <T extends com.google.protobuf.Message>
MethodDescriptor.Marshaller<T> ProtoUtils.marshaller(T defaultInstance) Create aMethodDescriptor.Marshallerfor protos of the same type asdefaultInstance.static <T extends com.google.protobuf.Message>
MethodDescriptor.Marshaller<T> ProtoUtils.marshallerWithRecursionLimit(T defaultInstance, int recursionLimit) Creates aMethodDescriptor.Marshallerfor protos of the same type asdefaultInstanceand a custom limit for the recursion depth. -
Uses of MethodDescriptor.Marshaller in io.grpc.protobuf.lite
Classes in io.grpc.protobuf.lite that implement MethodDescriptor.MarshallerModifier and TypeClassDescriptionprivate static final classProtoLiteUtils.MessageMarshaller<T extends com.google.protobuf.MessageLite>Methods in io.grpc.protobuf.lite that return MethodDescriptor.MarshallerModifier and TypeMethodDescriptionstatic <T extends com.google.protobuf.MessageLite>
MethodDescriptor.Marshaller<T> ProtoLiteUtils.marshaller(T defaultInstance) Creates aMethodDescriptor.Marshallerfor protos of the same type asdefaultInstance.static <T extends com.google.protobuf.MessageLite>
MethodDescriptor.Marshaller<T> ProtoLiteUtils.marshallerWithRecursionLimit(T defaultInstance, int recursionLimit) Creates aMethodDescriptor.Marshallerfor protos of the same type asdefaultInstanceand a custom limit for the recursion depth. -
Uses of MethodDescriptor.Marshaller in io.grpc.protobuf.services
Classes in io.grpc.protobuf.services that implement MethodDescriptor.MarshallerModifier and TypeClassDescriptionprivate static final classFields in io.grpc.protobuf.services declared as MethodDescriptor.MarshallerModifier and TypeFieldDescriptionstatic final MethodDescriptor.Marshaller<byte[]> BinaryLogProvider.BYTEARRAY_MARSHALLERMethods in io.grpc.protobuf.services with parameters of type MethodDescriptor.MarshallerModifier and TypeMethodDescription(package private) abstract <T> voidBinlogHelper.SinkWriter.logRpcMessage(long seq, GrpcLogEntry.EventType eventType, MethodDescriptor.Marshaller<T> marshaller, T message, GrpcLogEntry.Logger logger, long callId) Logs the message message.(package private) <T> voidBinlogHelper.SinkWriterImpl.logRpcMessage(long seq, GrpcLogEntry.EventType eventType, MethodDescriptor.Marshaller<T> marshaller, T message, GrpcLogEntry.Logger logger, long callId)
MethodDescriptor.newBuilder().