Uses of Interface
io.grpc.Metadata.AsciiMarshaller
-
Packages that use Metadata.AsciiMarshaller Package Description io.grpc The gRPC core public API.io.grpc.internal Interfaces and implementations that are internal to gRPC. -
-
Uses of Metadata.AsciiMarshaller in io.grpc
Fields in io.grpc declared as Metadata.AsciiMarshaller Modifier and Type Field Description static Metadata.AsciiMarshaller<java.lang.String>
Metadata. ASCII_STRING_MARSHALLER
Simple metadata marshaller that encodes strings as is.private Metadata.AsciiMarshaller<T>
Metadata.AsciiKey. marshaller
Methods in io.grpc with parameters of type Metadata.AsciiMarshaller Modifier and Type Method Description static <T> Metadata.Key<T>
InternalMetadata. keyOf(java.lang.String name, Metadata.AsciiMarshaller<T> marshaller)
(package private) static <T> Metadata.Key<T>
Metadata.Key. of(java.lang.String name, boolean pseudo, Metadata.AsciiMarshaller<T> marshaller)
static <T> Metadata.Key<T>
Metadata.Key. of(java.lang.String name, Metadata.AsciiMarshaller<T> marshaller)
Creates a key for an ASCII header.Constructors in io.grpc with parameters of type Metadata.AsciiMarshaller Constructor Description AsciiKey(java.lang.String name, boolean pseudo, Metadata.AsciiMarshaller<T> marshaller)
Keys have a name and an ASCII marshaller used for serialization. -
Uses of Metadata.AsciiMarshaller in io.grpc.internal
Classes in io.grpc.internal that implement Metadata.AsciiMarshaller Modifier and Type Class Description (package private) static class
GrpcUtil.TimeoutMarshaller
Marshals a nanoseconds representation of the timeout to and from a string representation, consisting of an ASCII decimal representation of a number with at most 8 digits, followed by a unit.
-