| Package | Description | 
|---|---|
| org.axonframework.config | |
| org.axonframework.eventhandling | 
 Classes related to event handling and dispatching, such as  
Event Listeners and the Event Bus. | 
| org.axonframework.eventhandling.tokenstore.inmemory | |
| org.axonframework.eventhandling.tokenstore.jdbc | |
| org.axonframework.eventhandling.tokenstore.jpa | |
| org.axonframework.springboot.autoconfig | 
| Modifier and Type | Method and Description | 
|---|---|
TokenStore | 
EventProcessingModule.tokenStore(String processorName)  | 
TokenStore | 
EventProcessingConfiguration.tokenStore(String processorName)
Returns the  
TokenStore tied to the given processingGroup. | 
| Modifier and Type | Method and Description | 
|---|---|
EventProcessingConfigurer | 
EventProcessingModule.registerTokenStore(Function<Configuration,TokenStore> tokenStore)  | 
EventProcessingConfigurer | 
EventProcessingConfigurer.registerTokenStore(Function<Configuration,TokenStore> tokenStore)
Register a  
Function that builds a TokenStore to use as the default in case no explicit token
 store was configured for a processor. | 
EventProcessingConfigurer | 
EventProcessingModule.registerTokenStore(String processingGroup,
                  Function<Configuration,TokenStore> tokenStore)  | 
EventProcessingConfigurer | 
EventProcessingConfigurer.registerTokenStore(String processorName,
                  Function<Configuration,TokenStore> tokenStoreBuilder)
 | 
| Modifier and Type | Method and Description | 
|---|---|
TrackingEventProcessor.Builder | 
TrackingEventProcessor.Builder.tokenStore(TokenStore tokenStore)
Sets the  
TokenStore used to store and fetch event tokens that enable this EventProcessor to
 track its progress. | 
| Modifier and Type | Class and Description | 
|---|---|
class  | 
InMemoryTokenStore
Implementation of a  
TokenStore that stores tracking tokens in memory. | 
| Modifier and Type | Class and Description | 
|---|---|
class  | 
JdbcTokenStore
Implementation of a token store that uses JDBC to save and load tokens. 
 | 
| Modifier and Type | Class and Description | 
|---|---|
class  | 
JpaTokenStore
Implementation of a token store that uses JPA to save and load tokens. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
TokenStore | 
JdbcAutoConfiguration.tokenStore(ConnectionProvider connectionProvider,
          Serializer serializer)  | 
TokenStore | 
JpaAutoConfiguration.tokenStore(Serializer serializer,
          EntityManagerProvider entityManagerProvider)  | 
Copyright © 2010–2020. All rights reserved.