ProjectionResults: {
    deleted: number;
    error?: string;
    upserted: number;
    watermark: number;
}

Projection Results

The results after a Projection Store tries to commit the projection records in a Projection

  • upserted upserted records
  • deleted deleted records
  • watermark the new watermark stored in upserted records
  • error? error message if commit fails

Type declaration

  • Readonly deleted: number
  • Optional Readonly error?: string
  • Readonly upserted: number
  • Readonly watermark: number

Generated using TypeDoc