示例#1
0
 /**
  * Alternative constructor allowing reuse of {@link ByteBuffer}s. The builder can still grow the
  * buffer as necessary. User classes should make sure to call {@link #dataBuffer()} to obtain the
  * resulting encoded message
  *
  * @param existing_bb The byte buffer to reuse
  */
 public FlatBufferBuilder(ByteBuffer existing_bb) {
   init(existing_bb);
 }