SpringTransactionalOutboxBuilder
@Component
Builder for TransactionalOutbox.
Example on Spring Boot:
fun transactionalOutbox(
private val springOutboxBuilder: SpringTransactionalOutboxBuilder,
): TransactionalOutbox {
return springOutboxBuilder
.withClock(clock)
.withHandlers(outboxHandlers)
.withMonitorLocksIdentifier(monitorLocksIdentifier)
.withCleanupLocksIdentifier(cleanupLocksIdentifier)
.withThreadPoolSize(threadPoolSize)
.withThreadPriority(threadPriority)
.withThreadPoolTimeOut(threadPoolTimeOut)
.addProcessorDecorator(outboxItemProcessorDecorator)
.withGroupIdProvider(outboxGroupIdProvider)
.withGroupingConfiguration(outboxGroupingConfiguration)
.build()
}
Content copied to clipboard
Constructors
Link copied to clipboard
constructor(postgresLockDao: PostgresLockDao, outboxStore: OutboxStore, instantOutboxPublisher: InstantOutboxPublisher)
Functions
Link copied to clipboard
Sets the locks identifier for the outbox cleanup runs.
Link copied to clipboard
Sets the clock for the outbox.
Link copied to clipboard
Sets the handlers for the outbox.
Link copied to clipboard
open override fun withMonitorLocksIdentifier(locksIdentifier: Long): SpringCleanupLocksIdentifierStep
Sets the locks identifier for the outbox monitor runs.