Interface RealtimeDeltaEvent<TFeature>

interface RealtimeDeltaEvent<TFeature> {
    checkpoint?: RealtimeResumeCheckpoint;
    cursor?: string;
    deletes?: readonly RealtimeDeletePatch[];
    deltaToken?: string;
    eventId?: string;
    receivedAt?: number;
    sequence?: number;
    timestamp?: string;
    type: "delta";
    upserts?: readonly RealtimeFeaturePatch<TFeature>[];
    watermark?: string;
}

Type Parameters

  • TFeature = unknown

Hierarchy (view full)

Properties

cursor?: string
deletes?: readonly RealtimeDeletePatch[]
deltaToken?: string
eventId?: string
receivedAt?: number
sequence?: number
timestamp?: string
type
upserts?: readonly RealtimeFeaturePatch<TFeature>[]
watermark?: string