| Package | Description |
|---|---|
| org.axonframework.eventsourcing.eventstore |
Definitions and implementations of the Event store, the mechanism that can load event streams and append events to
them.
|
| org.axonframework.eventsourcing.eventstore.jdbc |
JDBC Implementation of the EventStore.
|
| org.axonframework.eventsourcing.eventstore.jpa |
JPA Implementation of the EventStore.
|
| org.axonframework.eventsourcing.eventstore.legacyjpa | |
| org.axonframework.eventsourcing.snapshotting |
| Modifier and Type | Method and Description |
|---|---|
AbstractEventStorageEngine.Builder |
AbstractEventStorageEngine.Builder.snapshotFilter(SnapshotFilter snapshotFilter)
Sets the
snapshotFilter deciding whether to take a snapshot into account. |
BatchingEventStorageEngine.Builder |
BatchingEventStorageEngine.Builder.snapshotFilter(SnapshotFilter snapshotFilter) |
| Modifier and Type | Method and Description |
|---|---|
JdbcEventStorageEngine.Builder |
JdbcEventStorageEngine.Builder.snapshotFilter(SnapshotFilter snapshotFilter) |
| Modifier and Type | Method and Description |
|---|---|
JpaEventStorageEngine.Builder |
JpaEventStorageEngine.Builder.snapshotFilter(SnapshotFilter snapshotFilter) |
| Modifier and Type | Method and Description |
|---|---|
JpaEventStorageEngine.Builder |
JpaEventStorageEngine.Builder.snapshotFilter(SnapshotFilter snapshotFilter) |
| Modifier and Type | Class and Description |
|---|---|
class |
RevisionSnapshotFilter
A
SnapshotFilter implementation which based on a configurable allowed revision will only allow(DomainEventData) DomainEventData containing that revision. |
| Modifier and Type | Method and Description |
|---|---|
static SnapshotFilter |
SnapshotFilter.allowAll()
A
SnapshotFilter implementation which allows all snapshots. |
default SnapshotFilter |
SnapshotFilter.combine(SnapshotFilter other)
Combines
this SnapshotFilter with the give other filter in an "AND" operation,
effectively validating whether both return true on a allow(DomainEventData) call of each. |
static SnapshotFilter |
SnapshotFilter.rejectAll()
A
SnapshotFilter implementation which rejects all snapshots. |
| Modifier and Type | Method and Description |
|---|---|
default SnapshotFilter |
SnapshotFilter.combine(SnapshotFilter other)
Combines
this SnapshotFilter with the give other filter in an "AND" operation,
effectively validating whether both return true on a allow(DomainEventData) call of each. |
Copyright © 2010–2024. All rights reserved.