Uses of Class
dk.cloudcreate.essentials.components.eventsourced.aggregates.stateful.classic.state.AggregateRootWithState
-
Packages that use AggregateRootWithState Package Description dk.cloudcreate.essentials.components.eventsourced.aggregates.stateful.classic.state -
-
Uses of AggregateRootWithState in dk.cloudcreate.essentials.components.eventsourced.aggregates.stateful.classic.state
Classes in dk.cloudcreate.essentials.components.eventsourced.aggregates.stateful.classic.state with type parameters of type AggregateRootWithState Modifier and Type Class Description classAggregateRootWithState<ID,EVENT_TYPE extends Event<ID>,STATE extends AggregateState<ID,EVENT_TYPE>,AGGREGATE_TYPE extends AggregateRootWithState<ID,EVENT_TYPE,STATE,AGGREGATE_TYPE>>Variant of theAggregateRootpattern where the aggregate's state and allEventHandlerannotated methods are placed within the concreteAggregateStateobject.
When theAggregateRootWithStateis combined withAggregateState, then theAggregateRootWithStatewill contain the command methods and theAggregateStatecontains the state fields and theEventHandlerannotated methods.
-