Type alias BuildSignal<T>

BuildSignal<T>: Readonly<{
    computed: T;
    nextFreeIndex: number;
    type: typeof buildDoneNominal;
} | {
    currentFreeIndex: number;
    neededMinimalSize: number;
    nextToRun: BuildStep<T>;
    type: typeof bufferFullNominal;
} | {
    currentFreeIndex: number;
    nextToRun: BuildStep<T>;
    toInsert: DataView;
    type: typeof insertChunkNominal;
}>

A result of BuildStep to report the status of data building process.

Type Parameters

  • T

Generated using TypeDoc