Exemplo n.º 1
0
 public MessageBuilder(int firstSegmentWords)
 {
     this.arena = new Capnproto.BuilderArena(firstSegmentWords, Capnproto.BuilderArena.SUGGESTED_ALLOCATION_STRATEGY);
 }
Exemplo n.º 2
0
 public MessageBuilder(int firstSegmentWords, Capnproto.BuilderArena.AllocationStrategy allocationStrategy)
 {
     this.arena = new Capnproto.BuilderArena(firstSegmentWords, allocationStrategy);
 }
Exemplo n.º 3
0
 public MessageBuilder()
 {
     this.arena = new Capnproto.BuilderArena(Capnproto.BuilderArena.SUGGESTED_FIRST_SEGMENT_WORDS, Capnproto.BuilderArena.SUGGESTED_ALLOCATION_STRATEGY);
 }