@s2-dev/streamstore - v0.22.0
    Preparing search index...

    Type Alias ReadBatch

    type ReadBatch = {
        records: SequencedRecord[];
        tail?: null | API.StreamPosition;
    }
    Index

    Properties

    Properties

    records: SequencedRecord[]

    Records that are durably sequenced on the stream, retrieved based on the requested criteria. This can only be empty in response to a unary read (i.e. not SSE), if the request cannot be satisfied without violating an explicit bound (count, bytes, or until).

    tail?: null | API.StreamPosition