Result of a synchronous range acquisition: a byte view containing the requested range and the absolute address of buffer[ 0 ]. address - offset converts an absolute address into an index into buffer. The buffer is always standalone (byteOffset 0) or the original resident source buffer — both satisfy the extraction layer's new DataView( buffer.buffer ) zero-offset assumption.

interface StepBufferAcquisition {
    buffer: Uint8Array<ArrayBufferLike>;
    offset: number;
}

Properties

Properties

buffer: Uint8Array<ArrayBufferLike>
offset: number