Home | History | Annotate | Download | only in protobuf

Lines Matching defs:write

40  * <p/><b>Traditional write operations:</b>
42 * copying the data or completing the write before returning from the method call.
44 * <p/><b>Lazy write operations:</b> where the caller guarantees that it will never modify the
46 * maintain a reference to the buffer beyond the scope of the method call (e.g. until the write
57 public abstract void write(byte value) throws IOException;
69 * @param length the number of bytes to write starting from {@code offset}
72 public abstract void write(byte[] value, int offset, int length) throws IOException;
76 * beyond the scope of this method call (e.g. write later) since it is considered immutable and is
84 * @param length the number of bytes to write starting from {@code offset}
101 public abstract void write(ByteBuffer value) throws IOException;
105 * beyond the scope of this method call (e.g. write later) since it is considered immutable and is