Uses of Interface
org.fuin.ddd4j.ddd.DomainEvent
-
Packages that use DomainEvent Package Description org.fuin.ddd4j.ddd org.fuin.ddd4j.esrepo Copyright (C) 2015 Michael Schnell. -
-
Uses of DomainEvent in org.fuin.ddd4j.ddd
Classes in org.fuin.ddd4j.ddd that implement DomainEvent Modifier and Type Class Description classAbstractDomainEvent<ID extends EntityId>Base class for domain events.Methods in org.fuin.ddd4j.ddd that return types with arguments of type DomainEvent Modifier and Type Method Description protected List<Class<? extends DomainEvent<?>>>AbstractAggregateRoot. getIgnoredEvents()Returns a list of old / ignored events.List<DomainEvent<?>>AbstractAggregateRoot. getUncommittedChanges()@NotNull List<DomainEvent<?>>AggregateRoot. getUncommittedChanges()Returns a list of uncommitted changes.Methods in org.fuin.ddd4j.ddd with parameters of type DomainEvent Modifier and Type Method Description protected voidAbstractAggregateRoot. apply(@NotNull DomainEvent<?> event)Applies the given new event.protected voidAbstractEntity. apply(@NotNull DomainEvent<?> event)Applies the given new event.booleanDomainEventExpectedEntityIdPathValidator. isValid(DomainEvent<?> value, javax.validation.ConstraintValidatorContext context)voidAbstractAggregateRoot. loadFromHistory(DomainEvent<?>... history)voidAggregateRoot. loadFromHistory(@NotNull DomainEvent<?>... history)Loads the aggregate with historic events.Method parameters in org.fuin.ddd4j.ddd with type arguments of type DomainEvent Modifier and Type Method Description voidAbstractAggregateRoot. loadFromHistory(List<DomainEvent<?>> history)voidAggregateRoot. loadFromHistory(@NotNull List<DomainEvent<?>> history)Loads the aggregate with historic events. -
Uses of DomainEvent in org.fuin.ddd4j.esrepo
Method parameters in org.fuin.ddd4j.esrepo with type arguments of type DomainEvent Modifier and Type Method Description protected booleanEventStoreRepository. conflictsResolved(List<DomainEvent<?>> uncommittedChanges, List<DomainEvent<?>> unseenEvents)Checks if the uncommitted changes conflicts with unseen changes from the event store and tries to solve the problem.
-