pamoja for TypeScript - v0.1.17
    Preparing search index...

    Interface SlotRecord

    The record a device keeps about one slot, durable across a reboot.

    interface SlotRecord {
        digest: Buffer;
        sequence: number;
        size: number;
        state: SlotState;
        written: number;
    }
    Index
    digest: Buffer

    The digest of the image.

    sequence: number

    The sequence number of the image in the slot.

    size: number

    The length of the image in bytes.

    state: SlotState

    The state of the slot.

    written: number

    How many bytes have been stored, which is where a resumed transfer picks up.