io.deephaven.io.streams.Writable Maven / Gradle / Ivy
//
// Copyright (c) 2016-2024 Deephaven Data Labs and Patent Pending
//
package io.deephaven.io.streams;
import java.nio.ByteBuffer;
// --------------------------------------------------------------------
/**
* An object that can write itself to a byte buffer.
*/
public interface Writable {
/** Writes this object to the given byte buffer. */
void write(ByteBuffer byteBuffer);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy