Class ProjectionCheckpoint
- Assembly
- Stratara.EventSourcing.EntityFrameworkCore.dll
Where one store-reading consumer resumes in one partition, and which reader's positions it holds. A position from one reader means nothing to another, so a checkpoint written under a different reader is refused rather than misread.
[ExcludeFromCodeCoverage]
public sealed class ProjectionCheckpoint
- Inheritance
-
ProjectionCheckpoint
- Inherited Members
- Extension Methods
Properties
Partition
The partition.
public int Partition { get; set; }
Property Value
Position
The position to resume after.
public long Position { get; set; }
Property Value
Projection
The consumer, by the name the framework gives it.
public required string Projection { get; set; }
Property Value
Reader
The name of the reader whose positions these are.
public required string Reader { get; set; }