All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.deephaven.io.streams.Writable Maven / Gradle / Ivy

There is a newer version: 0.36.1
Show newest version
//
// 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