org.nustaq.offheap.bytez.ByteSink Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fst Show documentation
Show all versions of fst Show documentation
A fast java serialization drop in-replacement and some serialization based utils such as Structs and OffHeap Memory.
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