Uses of Interface
org.axonframework.eventsourcing.eventstore.AppendCondition
Packages that use AppendCondition
Package
Description
Part of the Axon Server Connector module.
Postgres extension main package.
Definitions and implementations of the Event store, the mechanism that can load event streams and append events to
them.
Part of the Axon Eventsourcing module.
Part of the Axon Eventsourcing module.
-
Uses of AppendCondition in io.axoniq.framework.axonserver.connector.event
Methods in io.axoniq.framework.axonserver.connector.event with parameters of type AppendConditionModifier and TypeMethodDescriptionAggregateBasedAxonServerEventStorageEngine.appendEvents(AppendCondition condition, @Nullable ProcessingContext context, List<TaggedEventMessage<?>> events) AxonServerEventStorageEngine.appendEvents(AppendCondition condition, @Nullable ProcessingContext context, List<TaggedEventMessage<?>> events) static io.axoniq.axonserver.grpc.event.dcb.ConsistencyConditionConditionConverter.convertAppendCondition(AppendCondition condition) Converts the givenconditioninto aConsistencyCondition. -
Uses of AppendCondition in io.axoniq.framework.postgresql
Methods in io.axoniq.framework.postgresql with parameters of type AppendConditionModifier and TypeMethodDescriptionPostgresqlEventStorageEngine.appendEvents(AppendCondition condition, ProcessingContext context, List<TaggedEventMessage<?>> events) -
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.default AppendConditionAppendCondition.replaceCriteria(EventCriteria criteria) Creates anAppendConditionwith the sameconsistencyMarker()as this one, but with the givencriteria, replacing any previously set criteria.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, @Nullable ProcessingContext context, List<TaggedEventMessage<?>> events) EventStorageEngine.appendEvents(AppendCondition condition, @Nullable ProcessingContext context, TaggedEventMessage<?>... events) Append one or moreeventsto the underlying storage solution.SnapshotCapableEventStorageEngine.appendEvents(AppendCondition condition, @Nullable ProcessingContext context, List<TaggedEventMessage<?>> events) AggregateBasedConsistencyMarker.from(AppendCondition appendCondition) Constructs anAggregateBasedConsistencyMarkerbased of the givenappendCondition.Method parameters in org.axonframework.eventsourcing.eventstore with type arguments of type AppendConditionModifier and TypeMethodDescriptionvoidDefaultEventStoreTransaction.overrideAppendCondition(UnaryOperator<AppendCondition> conditionOverride) default voidEventStoreTransaction.overrideAppendCondition(UnaryOperator<AppendCondition> conditionOverride) Overrides theAppendConditionthat will be used when committing this transaction. -
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, @Nullable 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, @Nullable ProcessingContext processingContext, List<TaggedEventMessage<?>> events)