EventSourcingStateAggregateRepository
class EventSourcingStateAggregateRepository(stateAggregateFactory: StateAggregateFactory, snapshotRepository: SnapshotRepository, eventStore: EventStore) : StateAggregateRepository
Event Sourcing State Aggregate Repository .
Author
ahoo wang
Constructors
Link copied to clipboard
constructor(stateAggregateFactory: StateAggregateFactory, snapshotRepository: SnapshotRepository, eventStore: EventStore)
Functions
Link copied to clipboard
open override fun <S : Any> load(aggregateId: AggregateId, metadata: StateAggregateMetadata<S>, tailVersion: Int): Mono<StateAggregate<S>>
Load State Aggregate.