ProjectionBatchCompleted

data class ProjectionBatchCompleted constructor(val successCount: Int, val skipCount: Int, val failureCount: Int, val totalCount: Int, val timestamp: Instant = Instant.now()) : DiceEvent

A batch of propositions finished projecting, with a tally of how each one turned out.

Constructors

Link copied to clipboard
constructor(successCount: Int, skipCount: Int, failureCount: Int, totalCount: Int, timestamp: Instant = Instant.now())

Properties

Link copied to clipboard

How many failed.

Link copied to clipboard

How many were skipped.

Link copied to clipboard

How many projected successfully.

Link copied to clipboard
open val timestamp: Instant

When the event was created.

Link copied to clipboard

How many propositions were in the batch.