Uses of Class
com.google.flatbuffers.FlatBufferBuilder.ByteBufferFactory
-
Packages that use FlatBufferBuilder.ByteBufferFactory Package Description com.google.flatbuffers -
-
Uses of FlatBufferBuilder.ByteBufferFactory in com.google.flatbuffers
Subclasses of FlatBufferBuilder.ByteBufferFactory in com.google.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.Methods in com.google.flatbuffers with parameters of type FlatBufferBuilder.ByteBufferFactory Modifier and Type Method Description FlatBufferBuilderFlatBufferBuilder. init(ByteBuffer existing_bb, FlatBufferBuilder.ByteBufferFactory bb_factory)Alternative initializer that allows reusing this object on an existing `ByteBuffer`.Constructors in com.google.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, ByteBuffer existing_bb, Utf8 utf8)Start with a buffer of size `initial_size`, then grow as required.FlatBufferBuilder(ByteBuffer existing_bb, FlatBufferBuilder.ByteBufferFactory bb_factory)Alternative constructor allowing reuse ofByteBuffers.
-