Interface ColumnarPatchCursorV1Experimental

Resumable position for one patch, matching the realtime cursor contract: the cursor resumes the stream, the sequence orders it, and observedAt records freshness on the patched batch identity.

interface ColumnarPatchCursorV1 {
    cursor: string;
    observedAt: string;
    sequence: number;
}

Properties

cursor: string
observedAt: string

RFC 3339 instant at which the producing source observed the change.

sequence: number

Strictly increasing per batch lineage.