CommandRequest
data class CommandRequest(val body: Any, val waitStrategy: CommandRequest.WaitStrategy = WaitStrategy(), val aggregateId: String? = null, val aggregateVersion: Int? = null, val tenantId: String? = null, val requestId: String? = null, val localFirst: Boolean? = null, val context: String? = null, val aggregate: String? = null, val serviceUri: String? = null, val type: String? = null)
Constructors
Link copied to clipboard
constructor(body: Any, waitStrategy: CommandRequest.WaitStrategy = WaitStrategy(), aggregateId: String? = null, aggregateVersion: Int? = null, tenantId: String? = null, requestId: String? = null, localFirst: Boolean? = null, context: String? = null, aggregate: String? = null, serviceUri: String? = null, type: String? = null)
Types
Link copied to clipboard
data class WaitStrategy(val waitStage: CommandStage = CommandStage.PROCESSED, val waitContext: String? = null, val waitProcessor: String? = null, val waitTimeout: Long? = null)