Uses of Interface
org.axonframework.messaging.eventhandling.processing.streaming.token.store.TokenStore
Packages that use TokenStore
Package
Description
Part of the Axon Extension module.
Part of the Axon Messaging module.
Part of the Axon Messaging module.
Part of the Axon Messaging module.
Part of the Axon Messaging module.
-
Uses of TokenStore in org.axonframework.extension.springboot.autoconfig
Methods in org.axonframework.extension.springboot.autoconfig that return TokenStoreModifier and TypeMethodDescriptionJdbcAutoConfiguration.tokenStore(DataSource dataSource, TokenSchema tokenSchema, GeneralConverter converter) Provides a JDBC-backedTokenStorefor tracking event processor token persistence.JpaAutoConfiguration.tokenStore(jakarta.persistence.EntityManagerFactory entityManagerFactory, TokenStoreProperties tokenStoreProperties, GeneralConverter converter) Builds a JPA Token Store. -
Uses of TokenStore in org.axonframework.messaging.eventhandling.processing.streaming.pooled
Methods in org.axonframework.messaging.eventhandling.processing.streaming.pooled that return TokenStoreModifier and TypeMethodDescriptionPooledStreamingEventProcessorConfiguration.tokenStore()Returns theTokenStoreused to store and fetch event tokens.Methods in org.axonframework.messaging.eventhandling.processing.streaming.pooled with parameters of type TokenStoreModifier and TypeMethodDescriptionPooledStreamingEventProcessorConfiguration.tokenStore(TokenStore tokenStore) Sets theTokenStoreused to store and fetch event tokens that enable thisEventProcessorto track its progress. -
Uses of TokenStore in org.axonframework.messaging.eventhandling.processing.streaming.token.store.inmemory
Classes in org.axonframework.messaging.eventhandling.processing.streaming.token.store.inmemory that implement TokenStoreModifier and TypeClassDescriptionclassImplementation of aTokenStorethat stores tracking tokens in memory. -
Uses of TokenStore in org.axonframework.messaging.eventhandling.processing.streaming.token.store.jdbc
Classes in org.axonframework.messaging.eventhandling.processing.streaming.token.store.jdbc that implement TokenStoreModifier and TypeClassDescriptionclassATokenStoreimplementation that uses JDBC to save and loadTrackingTokeninstances. -
Uses of TokenStore in org.axonframework.messaging.eventhandling.processing.streaming.token.store.jpa
Classes in org.axonframework.messaging.eventhandling.processing.streaming.token.store.jpa that implement TokenStoreModifier and TypeClassDescriptionclassImplementation of a token store that uses JPA to save and load tokens.