interface BcsWriterOptions {
    allocateSize?: number;
    initialSize?: number;
    maxSize?: number;
}

Properties

allocateSize?: number

The amount of bytes that will be allocated whenever additional memory is required

initialSize?: number

The initial size (in bytes) of the buffer tht will be allocated

maxSize?: number

The maximum size (in bytes) that the buffer is allowed to grow to