TransactionalOutbox

@Component
class TransactionalOutbox(@Lazy transactionalOutboxInstanceHolder: TransactionalOutboxInstanceHolder)

This bean is just a kotlin wrapper for using transactional outbox. Lazily injects the transactional outbox to avoid circular dependencies. Should be used instead of TransactionalOutbox inside outbox handlers. (no harm if used in other places as well)

Constructors

Link copied to clipboard
constructor(@Lazy transactionalOutboxInstanceHolder: TransactionalOutboxInstanceHolder)

Functions

Link copied to clipboard
fun add(type: OutboxType, payload: OutboxPayload, shouldPublishAfterInsertion: Boolean = false)
Link copied to clipboard
fun cleanup()
Link copied to clipboard
fun monitor(id: Long? = null)
Link copied to clipboard
fun shutdown()