Uses of Interface
io.grpc.Metadata.BinaryMarshaller
-
Packages that use Metadata.BinaryMarshaller Package Description io.grpc The gRPC core public API.io.grpc.protobuf API for gRPC over Protocol Buffers, including tools for serializing and de-serializing protobuf messages.io.grpc.protobuf.lite API for gRPC over Protocol Buffers with proto message classes generated by the Lite Runtime library. -
-
Uses of Metadata.BinaryMarshaller in io.grpc
Fields in io.grpc declared as Metadata.BinaryMarshaller Modifier and Type Field Description static Metadata.BinaryMarshaller<byte[]>
Metadata. BINARY_BYTE_MARSHALLER
Simple metadata marshaller that encodes bytes as is.private Metadata.BinaryMarshaller<T>
Metadata.BinaryKey. marshaller
Methods in io.grpc with parameters of type Metadata.BinaryMarshaller Modifier and Type Method Description static <T> Metadata.Key<T>
Metadata.Key. of(java.lang.String name, Metadata.BinaryMarshaller<T> marshaller)
Creates a key for a binary header.Constructors in io.grpc with parameters of type Metadata.BinaryMarshaller Constructor Description BinaryKey(java.lang.String name, Metadata.BinaryMarshaller<T> marshaller)
Keys have a name and a binary marshaller used for serialization. -
Uses of Metadata.BinaryMarshaller in io.grpc.protobuf
Methods in io.grpc.protobuf that return Metadata.BinaryMarshaller Modifier and Type Method Description static <T extends com.google.protobuf.Message>
Metadata.BinaryMarshaller<T>ProtoUtils. metadataMarshaller(T instance)
Produce a metadata marshaller for a protobuf type. -
Uses of Metadata.BinaryMarshaller in io.grpc.protobuf.lite
Classes in io.grpc.protobuf.lite that implement Metadata.BinaryMarshaller Modifier and Type Class Description private static class
ProtoLiteUtils.MetadataMarshaller<T extends com.google.protobuf.MessageLite>
Methods in io.grpc.protobuf.lite that return Metadata.BinaryMarshaller Modifier and Type Method Description static <T extends com.google.protobuf.MessageLite>
Metadata.BinaryMarshaller<T>ProtoLiteUtils. metadataMarshaller(T defaultInstance)
Produce a metadata marshaller for a protobuf type.
-