Package | Description |
---|---|
org.axonframework.eventhandling |
Classes related to event handling and dispatching, such as
Event Listeners and the Event Bus . |
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)
Returns a new
GapAwareTrackingToken instance based on this token but which has advanced to given index . |
GapAwareTrackingToken |
GapAwareTrackingToken.lowerBound(TrackingToken other) |
static GapAwareTrackingToken |
GapAwareTrackingToken.newInstance(long index,
Collection<Long> gaps)
|
GapAwareTrackingToken |
GapAwareTrackingToken.withGapsTruncatedAt(long truncationPoint)
Returns a copy of the current token, with gaps truncated at the given
truncationPoint . |
Modifier and Type | Class and Description |
---|---|
class |
GapAwareTrackingToken
Deprecated.
in favor of the
GapAwareTrackingToken |
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–2020. All rights reserved.