Uses of Class
io.opentelemetry.exporter.internal.marshal.CodedOutputStream
-
Packages that use CodedOutputStream Package Description io.opentelemetry.exporter.internal.marshal Marshaling framework for serializing data to protobuf format. -
-
Uses of CodedOutputStream in io.opentelemetry.exporter.internal.marshal
Subclasses of CodedOutputStream in io.opentelemetry.exporter.internal.marshal Modifier and Type Class Description private static class
CodedOutputStream.AbstractBufferedEncoder
Abstract base class for buffered encoders.private static class
CodedOutputStream.OutputStreamEncoder
AnCodedOutputStream
that decorates anOutputStream
.Fields in io.opentelemetry.exporter.internal.marshal declared as CodedOutputStream Modifier and Type Field Description private CodedOutputStream
ProtoSerializer. output
Methods in io.opentelemetry.exporter.internal.marshal that return CodedOutputStream Modifier and Type Method Description (package private) static CodedOutputStream
CodedOutputStream. newInstance(java.io.OutputStream output)
Create a newCodedOutputStream
wrapping the givenOutputStream
.Methods in io.opentelemetry.exporter.internal.marshal with parameters of type CodedOutputStream Modifier and Type Method Description private static void
StatelessMarshalerUtil. encodeUtf8(CodedOutputStream output, java.lang.String in)
(package private) static void
StatelessMarshalerUtil. writeUtf8(CodedOutputStream output, java.lang.String string, int utf8Length, boolean useUnsafe)
(package private) static void
StatelessMarshalerUtil. writeUtf8(CodedOutputStream output, java.lang.String string, int utf8Length, MarshalerContext context)
Write utf8 encoded string to output stream.
-