示例#1
0
 public SliceByteBuf(IBytebufPool pool)
     : this()
 {
     this.pool = pool;
 }
示例#2
0
 public FixedLengthByteBuf(IBytebufPool pool)
     : this()
 {
     this.pool = pool;
 }
示例#3
0
 public FixedLengthByteBuf(int capacity, IBytebufPool pool = null)
     : base(capacity)
 {
     this.pool = pool;
 }
示例#4
0
 public PooledByteBuf(IBytebufPool pool)
 {
     this.pool = pool;
 }