| Modifier and Type | Method and Description |
|---|---|
SimpleCommandBus.Builder |
SimpleCommandBus.Builder.transactionManager(TransactionManager transactionManager)
Sets the
TransactionManager used to manage transactions. |
AsynchronousCommandBus.Builder |
AsynchronousCommandBus.Builder.transactionManager(TransactionManager transactionManager) |
| Constructor and Description |
|---|
PagingJdbcIterable(TransactionManager transactionManager,
Supplier<Connection> connectionProvider,
PagingJdbcIterable.PagingStatementSupplier pagingQuerySupplier,
int pageSize,
JdbcUtils.SqlResultConverter<R> resultConverter,
Function<SQLException,RuntimeException> errorHandler)
Construct a new
Iterable of type R, utilizing paging queries to retrieve the entries. |
| Constructor and Description |
|---|
PagingJpaQueryIterable(int pageSize,
TransactionManager transactionManager,
Supplier<jakarta.persistence.TypedQuery<T>> querySupplier,
Function<T,R> lazyMappingFunction)
Constructs a new
Iterable using the provided querySupplier to construct queries when a new page
needs to be fetched. |
| Constructor and Description |
|---|
PagingJpaQueryIterable(int pageSize,
TransactionManager transactionManager,
Supplier<javax.persistence.TypedQuery<T>> querySupplier,
Function<T,R> lazyMappingFunction)
Deprecated.
Constructs a new
Iterable using the provided querySupplier to construct queries when a new page
needs to be fetched. |
| Modifier and Type | Class and Description |
|---|---|
class |
NoTransactionManager
TransactionManager implementation that does nothing.
|
| Modifier and Type | Method and Description |
|---|---|
static TransactionManager |
NoTransactionManager.instance()
Returns the singleton instance of this TransactionManager
|
| Modifier and Type | Method and Description |
|---|---|
SimpleDeadlineManager.Builder |
SimpleDeadlineManager.Builder.transactionManager(TransactionManager transactionManager)
Sets the
TransactionManager used to build transactions and ties them to deadline. |
| Modifier and Type | Method and Description |
|---|---|
DbSchedulerDeadlineManager.Builder |
DbSchedulerDeadlineManager.Builder.transactionManager(TransactionManager transactionManager)
Sets the
TransactionManager used to build transactions and ties them to deadline. |
| Modifier and Type | Method and Description |
|---|---|
JobRunrDeadlineManager.Builder |
JobRunrDeadlineManager.Builder.transactionManager(TransactionManager transactionManager)
Sets the
TransactionManager used to build transactions and ties them to deadline. |
| Modifier and Type | Method and Description |
|---|---|
QuartzDeadlineManager.Builder |
QuartzDeadlineManager.Builder.transactionManager(TransactionManager transactionManager)
Sets the
TransactionManager used to build transactions and ties them to deadline. |
| Modifier and Type | Method and Description |
|---|---|
TrackingEventProcessor.Builder |
TrackingEventProcessor.Builder.transactionManager(TransactionManager transactionManager)
Sets the
TransactionManager used when processing EventMessages. |
SubscribingEventProcessor.Builder |
SubscribingEventProcessor.Builder.transactionManager(TransactionManager transactionManager)
Sets the
TransactionManager used when processing EventMessages. |
| Modifier and Type | Method and Description |
|---|---|
DeadLetteringEventHandlerInvoker.Builder |
DeadLetteringEventHandlerInvoker.Builder.transactionManager(TransactionManager transactionManager)
Sets the
TransactionManager used by this invoker for all operations involving the configured
SequencedDeadLetterQueue. |
| Modifier and Type | Method and Description |
|---|---|
JdbcSequencedDeadLetterQueue.Builder<E> |
JdbcSequencedDeadLetterQueue.Builder.transactionManager(TransactionManager transactionManager)
Sets the
TransactionManager used to manage transaction around fetching dead-letter data. |
| Modifier and Type | Method and Description |
|---|---|
JpaSequencedDeadLetterQueue.Builder<T> |
JpaSequencedDeadLetterQueue.Builder.transactionManager(TransactionManager transactionManager)
Sets the
TransactionManager used to manage transaction around fetching event data. |
| Modifier and Type | Method and Description |
|---|---|
JpaSequencedDeadLetterQueue.Builder<T> |
JpaSequencedDeadLetterQueue.Builder.transactionManager(TransactionManager transactionManager)
Sets the
TransactionManager used to manage transaction around fetching event data. |
| Modifier and Type | Method and Description |
|---|---|
PooledStreamingEventProcessor.Builder |
PooledStreamingEventProcessor.Builder.transactionManager(TransactionManager transactionManager)
Sets the
TransactionManager used when processing EventMessages. |
| Modifier and Type | Method and Description |
|---|---|
DbSchedulerEventScheduler.Builder |
DbSchedulerEventScheduler.Builder.transactionManager(TransactionManager transactionManager)
Sets the
TransactionManager used to build transactions and ties them on event publication. |
| Modifier and Type | Method and Description |
|---|---|
SimpleEventScheduler.Builder |
SimpleEventScheduler.Builder.transactionManager(TransactionManager transactionManager)
Sets the
TransactionManager used to build transactions and ties them on event publication. |
| Modifier and Type | Method and Description |
|---|---|
JobRunrEventScheduler.Builder |
JobRunrEventScheduler.Builder.transactionManager(TransactionManager transactionManager)
Sets the
TransactionManager used to build transactions and ties them on event publication. |
| Modifier and Type | Method and Description |
|---|---|
QuartzEventScheduler.Builder |
QuartzEventScheduler.Builder.transactionManager(TransactionManager transactionManager)
Sets the
TransactionManager used to build transactions and ties them on event publication. |
| Constructor and Description |
|---|
TransactionManagingInterceptor(TransactionManager transactionManager)
Initializes a
TransactionManagingInterceptor that uses the given transactionManager. |
| Modifier and Type | Method and Description |
|---|---|
default void |
UnitOfWork.attachTransaction(TransactionManager transactionManager)
Attach a transaction to this Unit of Work, using the given
transactionManager. |
| Modifier and Type | Method and Description |
|---|---|
SimpleQueryBus.Builder |
SimpleQueryBus.Builder.transactionManager(TransactionManager transactionManager)
Sets the
TransactionManager used to manage the query handling transactions. |
Copyright © 2010–2025. All rights reserved.