protected void DiscardSomeReadBytes()
 {
     if (_cumulation != null && !_first && _cumulation.ReferenceCount == 1)
     {
         _cumulation.DiscardSomeReadBytes();
     }
 }
示例#2
0
 public IByteBuf DiscardSomeReadBytes()
 {
     _buf.DiscardSomeReadBytes();
     return(this);
 }
示例#3
0
 protected override void ExecuteInternal(IByteBuf buf)
 {
     buf.DiscardSomeReadBytes();
 }