Package-level declarations
Types
Link copied to clipboard
interface CleanupLocksProviderStep
Link copied to clipboard
interface InstantOutboxPublisherStep
Link copied to clipboard
interface MonitorLocksProviderStep
Link copied to clipboard
interface OutboxHandler
OutboxHandler is responsible for:
Link copied to clipboard
interface OutboxHandlersStep
Link copied to clipboard
interface OutboxLocksProvider
Expects a distributed locks provider implementation.
Link copied to clipboard
abstract class SimpleOutboxHandler<T : OutboxPayload>(supportedType: OutboxType, objectMapper: ObjectMapper, clock: Clock, maxRetries: Int, payloadType: Class<T>) : OutboxHandler
This class purpose is to create an easy way to create an outbox handler.
Link copied to clipboard
interface TransactionalOutbox
TransactionalOutbox is the main entry point for the library. It is responsible for:
Link copied to clipboard
class TransactionalOutboxBuilder(clock: Clock, rerunAfterDuration: Duration = DEFAULT_RERUN_AFTER_DURATION) : OutboxHandlersStep, MonitorLocksProviderStep, CleanupLocksProviderStep, StoreStep, InstantOutboxPublisherStep, BuildStep
Builder for TransactionalOutbox.