AggregateResult

data class AggregateResult<ID : Any, out R>(val localId: ID, val result: R, val toSend: OutboundMessage<ID>, val newState: State)

Result of the aggregate computation. It represents the localId of the device, the result of the computation, the messages toSend to other devices and the newState of the device.

Constructors

Link copied to clipboard
constructor(localId: ID, result: R, toSend: OutboundMessage<ID>, newState: State)

Properties

Link copied to clipboard
val localId: ID
Link copied to clipboard
Link copied to clipboard
val result: R
Link copied to clipboard