Uses of Interface
org.axonframework.eventsourcing.eventstore.AppendCondition
Packages that use AppendCondition
Package
Description
Definitions and implementations of the Event store, the mechanism that can load event streams and append events to
them.
JPA Implementation of the EventStore.
-
Uses of AppendCondition in org.axonframework.axonserver.connector.event
Methods in org.axonframework.axonserver.connector.event with parameters of type AppendConditionModifier and TypeMethodDescriptionAggregateBasedAxonServerEventStorageEngine.appendEvents(AppendCondition condition, ProcessingContext context, List<TaggedEventMessage<?>> events) AxonServerEventStorageEngine.appendEvents(AppendCondition condition, ProcessingContext context, List<TaggedEventMessage<?>> events) static io.axoniq.axonserver.grpc.event.dcb.ConsistencyConditionConditionConverter.convertAppendCondition(AppendCondition condition) Converts the givenconditioninto aConsistencyCondition. -
Uses of AppendCondition in org.axonframework.eventsourcing.eventstore
Methods in org.axonframework.eventsourcing.eventstore that return AppendConditionModifier and TypeMethodDescriptionstatic AppendConditionAppendCondition.none()Returns anAppendConditionthat has no criteria nor consistency marker.default AppendConditionAppendCondition.orCriteria(EventCriteria criteria) Returns an AppendCondition with a condition that represents this AppendCondition's criteria or the givencriteria.static AppendConditionAppendCondition.withCriteria(EventCriteria criteria) Creates an AppendCondition to append events only if no events matching givencriteriaare available.AppendCondition.withMarker(ConsistencyMarker consistencyMarker) Creates an AppendCondition with the same criteria as this one, but with givenconsistencyMarker.Methods in org.axonframework.eventsourcing.eventstore with parameters of type AppendConditionModifier and TypeMethodDescriptionEventStorageEngine.appendEvents(AppendCondition condition, ProcessingContext context, List<TaggedEventMessage<?>> events) EventStorageEngine.appendEvents(AppendCondition condition, ProcessingContext context, TaggedEventMessage<?>... events) Append one or moreeventsto the underlying storage solution.AggregateBasedConsistencyMarker.from(AppendCondition appendCondition) Constructs anAggregateBasedConsistencyMarkerbased of the givenappendCondition. -
Uses of AppendCondition in org.axonframework.eventsourcing.eventstore.inmemory
Methods in org.axonframework.eventsourcing.eventstore.inmemory with parameters of type AppendConditionModifier and TypeMethodDescriptionInMemoryEventStorageEngine.appendEvents(AppendCondition condition, ProcessingContext processingContext, List<TaggedEventMessage<?>> events) -
Uses of AppendCondition in org.axonframework.eventsourcing.eventstore.jpa
Methods in org.axonframework.eventsourcing.eventstore.jpa with parameters of type AppendConditionModifier and TypeMethodDescriptionAggregateBasedJpaEventStorageEngine.appendEvents(AppendCondition condition, ProcessingContext processingContext, List<TaggedEventMessage<?>> events)