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.
|
Modifier and Type | Method and Description |
---|---|
GapAwareTrackingToken |
GapAwareTrackingToken.advanceTo(long index,
int maxGapOffset)
Deprecated.
Use
advanceTo(long, int, boolean) instead |
GapAwareTrackingToken |
GapAwareTrackingToken.advanceTo(long index,
int maxGapOffset,
boolean allowGaps)
Returns a new
GapAwareTrackingToken instance based on this token but which has advanced to given index . |
static GapAwareTrackingToken |
GapAwareTrackingToken.newInstance(long index,
Collection<Long> gaps)
|
Modifier and Type | Method and Description |
---|---|
protected TrackedEventData<?> |
JdbcEventStorageEngine.getTrackedEventData(ResultSet resultSet,
GapAwareTrackingToken previousToken)
Extracts the next tracked event entry from the given
resultSet . |
Copyright © 2010–2017. All rights reserved.