-
- All Implemented Interfaces:
public final class InMemoryEventStore.AggregateInfo
-
-
Field Summary
Fields Modifier and Type Field Description private IntegercurrentVersionprivate ConcurrentMap<Integer, DomainEventStream>eventDictprivate ConcurrentMap<String, DomainEventStream>commandDict
-
Constructor Summary
Constructors Constructor Description InMemoryEventStore.AggregateInfo()
-
Method Summary
Modifier and Type Method Description final IntegergetCurrentVersion()final UnitsetCurrentVersion(Integer currentVersion)final ConcurrentMap<Integer, DomainEventStream>getEventDict()final UnitsetEventDict(ConcurrentMap<Integer, DomainEventStream> eventDict)final ConcurrentMap<String, DomainEventStream>getCommandDict()final UnitsetCommandDict(ConcurrentMap<String, DomainEventStream> commandDict)-
-
Method Detail
-
getCurrentVersion
final Integer getCurrentVersion()
-
setCurrentVersion
final Unit setCurrentVersion(Integer currentVersion)
-
getEventDict
final ConcurrentMap<Integer, DomainEventStream> getEventDict()
-
setEventDict
final Unit setEventDict(ConcurrentMap<Integer, DomainEventStream> eventDict)
-
getCommandDict
final ConcurrentMap<String, DomainEventStream> getCommandDict()
-
setCommandDict
final Unit setCommandDict(ConcurrentMap<String, DomainEventStream> commandDict)
-
-
-
-