Function ReadBuffer.this

Creates a new read buffer.

this (
  ulong size = 8192LU,
  ulong minAvailable = 1024LU
);

Parameters

NameDescription
size Initial buffer size and the size by which the buffer will grow.
minAvailable minimal size should be always available to fill. So it will reallocate if free < minAvailable .