Package-level declarations

Types

Link copied to clipboard
data class Command<T : Any, P>(val event: Event<T, P>, val model: ModelID<T>?, val params: P)

A class describing an event.

Link copied to clipboard
data class CommandToken(time: Instant = Clock.System.now(), models: Set<ModelID<out Any>> = emptySet())
Link copied to clipboard
Link copied to clipboard
data class ProcessingOptions(val token: CommandToken, val dryRun: Boolean = false, val debugOptions: Map<DebugOptions, Level> = defaultDebugOptions)