Uses of Class
org.axonframework.eventhandling.GapAwareTrackingToken
Packages that use GapAwareTrackingToken
Package
Description
Classes related to event handling and dispatching, such as
Event Listeners and the Event Bus.Definitions and implementations of the Event store, the mechanism that can load event streams and append events to
them.
JDBC Implementation of the EventStore.
JPA Implementation of the EventStore.
-
Uses of GapAwareTrackingToken in org.axonframework.eventhandling
Methods in org.axonframework.eventhandling that return GapAwareTrackingTokenModifier and TypeMethodDescriptionGapAwareTrackingToken.advanceTo(long index, int maxGapOffset) Returns a newGapAwareTrackingTokeninstance based on this token but which has advanced to givenindex.GapAwareTrackingToken.lowerBound(TrackingToken other) static GapAwareTrackingTokenGapAwareTrackingToken.newInstance(long index, Collection<Long> gaps) GapAwareTrackingToken.withGapsTruncatedAt(long truncationPoint) Returns a copy of the current token, with gaps truncated at the giventruncationPoint. -
Uses of GapAwareTrackingToken in org.axonframework.eventsourcing.eventstore
Subclasses of GapAwareTrackingToken in org.axonframework.eventsourcing.eventstore -
Uses of GapAwareTrackingToken in org.axonframework.eventsourcing.eventstore.jdbc
Methods in org.axonframework.eventsourcing.eventstore.jdbc with parameters of type GapAwareTrackingTokenModifier and TypeMethodDescriptionprotected TrackedEventData<?> JdbcEventStorageEngine.getTrackedEventData(ResultSet resultSet, GapAwareTrackingToken previousToken) Extracts the next tracked event entry from the givenresultSet. -
Uses of GapAwareTrackingToken in org.axonframework.eventsourcing.eventstore.jpa
Methods in org.axonframework.eventsourcing.eventstore.jpa with parameters of type GapAwareTrackingTokenModifier and TypeMethodDescriptionJpaEventStorageEngine.fetchEvents(GapAwareTrackingToken token) Returns a batch of event data as object entries in the event storage with a greater than the giventoken. -
Uses of GapAwareTrackingToken in org.axonframework.eventsourcing.eventstore.legacyjpa
Methods in org.axonframework.eventsourcing.eventstore.legacyjpa with parameters of type GapAwareTrackingTokenModifier and TypeMethodDescriptionJpaEventStorageEngine.fetchEvents(GapAwareTrackingToken token) Deprecated.Returns a batch of event data as object entries in the event storage with a greater than the giventoken.
GapAwareTrackingToken