Uses of Class
io.objectbox.flatbuffers.FlatBufferBuilder.ByteBufferFactory
-
Packages that use FlatBufferBuilder.ByteBufferFactory Package Description io.objectbox.flatbuffers -
-
Uses of FlatBufferBuilder.ByteBufferFactory in io.objectbox.flatbuffers
Subclasses of FlatBufferBuilder.ByteBufferFactory in io.objectbox.flatbuffers Modifier and Type Class Description static classFlatBufferBuilder.HeapByteBufferFactoryAn implementation of the ByteBufferFactory interface that is used when one is not provided by the user.Fields in io.objectbox.flatbuffers declared as FlatBufferBuilder.ByteBufferFactory Modifier and Type Field Description (package private) FlatBufferBuilder.ByteBufferFactoryFlatBufferBuilder. bb_factoryMethods in io.objectbox.flatbuffers with parameters of type FlatBufferBuilder.ByteBufferFactory Modifier and Type Method Description (package private) static java.nio.ByteBufferFlatBufferBuilder. growByteBuffer(java.nio.ByteBuffer bb, FlatBufferBuilder.ByteBufferFactory bb_factory)Doubles the size of the backingByteBufferand copies the old data towards the end of the new buffer (since we build the buffer backwards).FlatBufferBuilderFlatBufferBuilder. init(java.nio.ByteBuffer existing_bb, FlatBufferBuilder.ByteBufferFactory bb_factory)Alternative initializer that allows reusing this object on an existing `ByteBuffer`.Constructors in io.objectbox.flatbuffers with parameters of type FlatBufferBuilder.ByteBufferFactory Constructor Description FlatBufferBuilder(int initial_size, FlatBufferBuilder.ByteBufferFactory bb_factory)Start with a buffer of size `initial_size`, then grow as required.FlatBufferBuilder(int initial_size, FlatBufferBuilder.ByteBufferFactory bb_factory, java.nio.ByteBuffer existing_bb, Utf8 utf8)Start with a buffer of size `initial_size`, then grow as required.FlatBufferBuilder(java.nio.ByteBuffer existing_bb, FlatBufferBuilder.ByteBufferFactory bb_factory)Alternative constructor allowing reuse ofByteBuffers.
-