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

    Type Alias AppendAck

    Success response to an append request.

    type AppendAck = {
        end: StreamPosition;
        start: StreamPosition;
        tail: StreamPosition;
    }
    Index

    Properties

    Properties

    Sequence number of the last record that was appended + 1, and timestamp of the last record that was appended. The difference between end.seq_num and start.seq_num will be the number of records appended.

    Sequence number and timestamp of the first record that was appended.

    Sequence number that will be assigned to the next record on the stream, and timestamp of the last record on the stream. This can be greater than the end position in case of concurrent appends.