|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use TransactionManager | |
---|---|
org.axonframework.commandhandling | Classes that implement the concept of command handling using explicit command objects. |
org.axonframework.commandhandling.disruptor | |
org.axonframework.contextsupport.spring | |
org.axonframework.eventhandling.async | |
org.axonframework.eventhandling.replay | |
org.axonframework.eventhandling.scheduling.quartz | |
org.axonframework.eventsourcing | Classes related to event sourcing. |
org.axonframework.saga.annotation | |
org.axonframework.unitofwork | Classes in support of the UnitOfWork pattern in Axon Framework. |
Uses of TransactionManager in org.axonframework.commandhandling |
---|
Methods in org.axonframework.commandhandling with parameters of type TransactionManager | |
---|---|
void |
SimpleCommandBus.setTransactionManager(TransactionManager transactionManager)
Sets the transaction manager that manages the transaction around command handling. |
Uses of TransactionManager in org.axonframework.commandhandling.disruptor |
---|
Methods in org.axonframework.commandhandling.disruptor that return TransactionManager | |
---|---|
TransactionManager |
DisruptorConfiguration.getTransactionManager()
Returns the transaction manager to use to manage a transaction around the storage and publication of events. |
Methods in org.axonframework.commandhandling.disruptor with parameters of type TransactionManager | |
---|---|
DisruptorConfiguration |
DisruptorConfiguration.setTransactionManager(TransactionManager newTransactionManager)
Sets the transaction manager to use to manage a transaction around the storage and publication of events. |
Constructors in org.axonframework.commandhandling.disruptor with parameters of type TransactionManager | |
---|---|
EventPublisher(EventStore eventStore,
EventBus eventBus,
Executor executor,
TransactionManager transactionManager,
RollbackConfiguration rollbackConfiguration,
int segmentId)
Initializes the EventPublisher to publish Events to the given eventStore and eventBus
for aggregate of given aggregateType . |
Uses of TransactionManager in org.axonframework.contextsupport.spring |
---|
Methods in org.axonframework.contextsupport.spring that return TransactionManager | |
---|---|
TransactionManager |
TransactionManagerFactoryBean.getObject()
|
Uses of TransactionManager in org.axonframework.eventhandling.async |
---|
Constructors in org.axonframework.eventhandling.async with parameters of type TransactionManager | |
---|---|
AsynchronousCluster(String identifier,
Executor executor,
TransactionManager transactionManager,
SequencingPolicy<? super EventMessage<?>> sequencingPolicy)
Creates an AsynchronousCluster implementation using the given executor ,
transactionManager and sequencingPolicy . |
|
AsynchronousCluster(String identifier,
Executor executor,
TransactionManager transactionManager,
SequencingPolicy<? super EventMessage<?>> sequencingPolicy,
ErrorHandler errorHandler)
Creates an AsynchronousCluster implementation using the given executor ,
transactionManager and sequencingPolicy . |
Uses of TransactionManager in org.axonframework.eventhandling.replay |
---|
Constructors in org.axonframework.eventhandling.replay with parameters of type TransactionManager | |
---|---|
ReplayingCluster(Cluster delegate,
EventStoreManagement eventStore,
TransactionManager transactionManager,
int commitThreshold,
IncomingMessageHandler incomingMessageHandler)
Initializes a ReplayingCluster that wraps the given delegate , to allow it to replay event from the
given eventStore . |
Uses of TransactionManager in org.axonframework.eventhandling.scheduling.quartz |
---|
Methods in org.axonframework.eventhandling.scheduling.quartz with parameters of type TransactionManager | |
---|---|
void |
QuartzEventScheduler.setTransactionManager(TransactionManager transactionManager)
Sets the transaction manager that manages a transaction around the publication of an event. |
Uses of TransactionManager in org.axonframework.eventsourcing |
---|
Methods in org.axonframework.eventsourcing with parameters of type TransactionManager | |
---|---|
void |
AbstractSnapshotter.setTxManager(TransactionManager<?> transactionManager)
Sets the transactionManager that wraps the snapshot creation in a transaction. |
Uses of TransactionManager in org.axonframework.saga.annotation |
---|
Methods in org.axonframework.saga.annotation with parameters of type TransactionManager | |
---|---|
void |
AsyncAnnotatedSagaManager.setTransactionManager(TransactionManager transactionManager)
Sets the TransactionManager used to manage any transactions required by the underlying storage mechanism. |
Uses of TransactionManager in org.axonframework.unitofwork |
---|
Classes in org.axonframework.unitofwork that implement TransactionManager | |
---|---|
class |
NoTransactionManager
TransactionManager implementation that does nothing. |
class |
SpringTransactionManager
TransactionManager implementation that uses a PlatformTransactionManager as
underlying transaction manager. |
Methods in org.axonframework.unitofwork with parameters of type TransactionManager | |
---|---|
static UnitOfWork |
DefaultUnitOfWork.startAndGet(TransactionManager<?> transactionManager)
Starts a new DefaultUnitOfWork instance using the given transactionManager to provide a backing
transaction, registering it a CurrentUnitOfWork. |
Constructors in org.axonframework.unitofwork with parameters of type TransactionManager | |
---|---|
DefaultUnitOfWork(TransactionManager<?> transactionManager)
Initializes a Unit of Work (without starting it) that is binds to the transaction created by the given transactionManager when the Unit of Work starts. |
|
DefaultUnitOfWorkFactory(TransactionManager transactionManager)
Initializes the factory to create Unit of Work bound to transactions managed by the given transactionManager |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |