Package | Description |
---|---|
org.axonframework.boot.autoconfig | |
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.mongo.eventsourcing.tokenstore |
Modifier and Type | Method and Description |
---|---|
TokenStore |
JpaAutoConfiguration.tokenStore(Serializer serializer,
EntityManagerProvider entityManagerProvider) |
Modifier and Type | Method and Description |
---|---|
SagaConfiguration<S> |
SagaConfiguration.configureTokenStore(Function<Configuration,TokenStore> tokenStore)
Registers the given
tokenStore for use by a TrackingProcessor for the Saga being configured. |
EventHandlingConfiguration |
EventHandlingConfiguration.registerTokenStore(String name,
Function<Configuration,TokenStore> tokenStore)
Register the TokenStore to use for a processor of given
name . |
Constructor and Description |
---|
TrackingEventProcessor(String name,
EventHandlerInvoker eventHandlerInvoker,
StreamableMessageSource<TrackedEventMessage<?>> messageSource,
TokenStore tokenStore,
TransactionManager transactionManager)
Initializes an EventProcessor with given
name that subscribes to the given messageSource for
events. |
TrackingEventProcessor(String name,
EventHandlerInvoker eventHandlerInvoker,
StreamableMessageSource<TrackedEventMessage<?>> messageSource,
TokenStore tokenStore,
TransactionManager transactionManager,
MessageMonitor<? super EventMessage<?>> messageMonitor)
Initializes an EventProcessor with given
name that subscribes to the given messageSource for
events. |
TrackingEventProcessor(String name,
EventHandlerInvoker eventHandlerInvoker,
StreamableMessageSource<TrackedEventMessage<?>> messageSource,
TokenStore tokenStore,
TransactionManager transactionManager,
MessageMonitor<? super EventMessage<?>> messageMonitor,
RollbackConfiguration rollbackConfiguration,
ErrorHandler errorHandler,
TrackingEventProcessorConfiguration config)
Initializes an EventProcessor with given
name that subscribes to the given messageSource for
events. |
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 | Class and Description |
---|---|
class |
MongoTokenStore
An implementation of TokenStore that allows you store and retrieve tracking tokens with MongoDB.
|
Copyright © 2010–2017. All rights reserved.