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

org.nustaq.offheap.bytez.ByteSink Maven / Gradle / Ivy

Go to download

A fast java serialization drop in-replacement and some serialization based utils such as Structs and OffHeap Memory.

There is a newer version: 3.0.4-jdk17
Show newest version
package org.nustaq.offheap.bytez;

/**
 * Created by moelrue on 5/5/15.
 */
public interface ByteSink {

    public void put(long byteIndex, byte value);
    public long length();
    public void copyTo(BasicBytez other, long otherByteIndex, long myByteIndex, long lenBytes);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy