CheckpointGeneration

sealed interface CheckpointGeneration

Behavior for generating new checkpoints in simulation.

Inheritors

Types

Link copied to clipboard

Generate a checkpoint at the end of the simulation.

Link copied to clipboard
data class AtTimes(val times: List<Duration>) : CheckpointGeneration

Generate a checkpoint at a list of specific times.

Link copied to clipboard

Do not generate any checkpoints.

Link copied to clipboard
data class Periodic(val period: Duration) : CheckpointGeneration

Generate a checkpoint at multiples of a regular period.