Uses of Class
com.google.protobuf.CodedOutputStream
-
-
Uses of CodedOutputStream in com.google.protobuf
Methods in com.google.protobuf that return CodedOutputStream Modifier and Type Method Description static CodedOutputStreamCodedOutputStream. newInstance(byte[] flatArray)Create a newCodedOutputStreamthat writes directly to the given byte array.static CodedOutputStreamCodedOutputStream. newInstance(byte[] flatArray, int offset, int length)Create a newCodedOutputStreamthat writes directly to the given byte array slice.static CodedOutputStreamCodedOutputStream. newInstance(OutputStream output)Create a newCodedOutputStreamwrapping the givenOutputStream.static CodedOutputStreamCodedOutputStream. newInstance(OutputStream output, int bufferSize)Create a newCodedOutputStreamwrapping the givenOutputStreamwith a given buffer size.static CodedOutputStreamCodedOutputStream. newInstance(ByteBuffer buffer)Create a newCodedOutputStreamthat writes to the givenByteBuffer.static CodedOutputStreamCodedOutputStream. newInstance(ByteBuffer byteBuffer, int unused)Deprecated.the size parameter is no longer used since use of an internal buffer is useless (and wasteful) when writing to aByteBuffer.Methods in com.google.protobuf with parameters of type CodedOutputStream Modifier and Type Method Description voidMapEntryLite. serializeTo(CodedOutputStream output, int fieldNumber, K key, V value)Serializes the provided key and value as though they were wrapped by aMapEntryLiteto the output stream.abstract booleanCodedInputStream. skipField(int tag, CodedOutputStream output)Deprecated.useUnknownFieldSetorUnknownFieldSetLiteto skip to an output stream.abstract voidCodedInputStream. skipMessage(CodedOutputStream output)Reads an entire message and writes it to output in wire format.voidUnknownFieldSetLite. writeAsMessageSetTo(CodedOutputStream output)Serializes the set and writes it tooutputusingMessageSetwire format.voidGeneratedMessageLite. writeTo(CodedOutputStream output)voidMessageLite. writeTo(CodedOutputStream output)Serializes the message and writes it tooutput.voidUnknownFieldSetLite. writeTo(CodedOutputStream output)Serializes the set and writes it tooutput.voidGeneratedMessageLite.ExtendableMessage.ExtensionWriter. writeUntil(int end, CodedOutputStream output)
-