Skip to main content
Table of Contents

Class ProjectionCheckpoint

Namespace
Stratara.EventSourcing.EntityFrameworkCore.ReadStore.Checkpoints
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

int

Position

The position to resume after.

public long Position { get; set; }

Property Value

long

Projection

The consumer, by the name the framework gives it.

public required string Projection { get; set; }

Property Value

string

Reader

The name of the reader whose positions these are.

public required string Reader { get; set; }

Property Value

string