TransactionalOutboxBuilder

Builder for TransactionalOutbox.

Example on Spring Boot:

fun transactionalOutbox(): TransactionalOutbox {
return TransactionalOutboxBuilder
.make(clock)
.withHandlers(outboxHandlers)
.withMonitorLocksProvider(monitorLocksProvider)
.withCleanupLocksProvider(cleanupLocksProvider)
.withStore(outboxStore)
.withInstantOutboxPublisher(instantOutboxPublisher)
.withThreadPoolSize(threadPoolSize)
.withThreadPriority(threadPriority)
.withThreadPoolTimeOut(threadPoolTimeOut)
.addProcessorDecorator(outboxItemProcessorDecorator)
.withGroupIdProvider(outboxGroupIdProvider)
.withGroupingConfiguration(outboxGroupingConfiguration)
.build()
}

Constructors

Link copied to clipboard
constructor(clock: Clock, rerunAfterDuration: Duration = DEFAULT_RERUN_AFTER_DURATION)

Types

Link copied to clipboard
object Companion

Functions

Link copied to clipboard

Adds a decorator to be applied before asynchronously invoking Outbox Item Processors which, in turn, invokes the corresponding OutboxHandler.

Link copied to clipboard
open override fun build(): TransactionalOutbox

Builds the outbox.

Link copied to clipboard
open override fun withCleanupLocksProvider(locksProvider: OutboxLocksProvider): StoreStep

Sets the locks provider for the outbox cleanup runs.

Link copied to clipboard
open override fun withGroupIdProvider(groupIdProvider: OutboxGroupIdProvider): BuildStep

Sets the group id provider for the outbox that will be used to set corresponding field when an item is added.

Link copied to clipboard
Link copied to clipboard
open override fun withGroupingConfiguration(outboxGroupingConfiguration: OutboxGroupingConfiguration): BuildStep

Sets the grouping configuration for the outbox.

Link copied to clipboard

Sets the handlers for the outbox.

Link copied to clipboard
open override fun withInstantOrderingEnabled(instantOrderingEnabled: Boolean): BuildStep

Flag which indicates whether new instant processing mechanism should be used or not.

Link copied to clipboard
open override fun withInstantOutboxPublisher(instantOutboxPublisher: InstantOutboxPublisher): BuildStep

Sets the publisher for instant outboxes.

Link copied to clipboard

Sets the locks provider for the outbox monitor runs.

Link copied to clipboard
Link copied to clipboard

Sets the store for the outbox.

Link copied to clipboard
open override fun withThreadPoolSize(threadPoolSize: Int): BuildStep

Sets the thread pool size for the outbox.

Link copied to clipboard
open override fun withThreadPoolTimeOut(threadPoolTimeOut: Duration): BuildStep

Sets the thread pool timeout upon shutdown for the outbox.

Link copied to clipboard
open override fun withThreadPriority(threadPriority: Int): BuildStep

Sets the priority for the threads in the thread pool.