Package-level declarations

Types

Link copied to clipboard
data class OutboxItem(val id: Long? = null, val type: OutboxType, var status: OutboxStatus, val payload: String, var retries: Long = 0, var nextRun: Instant, var lastExecution: Instant? = null, var rerunAfter: Instant? = null, var deleteAfter: Instant? = null, val groupId: String? = null)

Represents an outbox item.

Link copied to clipboard
data class OutboxItemGroup(val items: List<OutboxItem>) : Iterable<OutboxItem>
Link copied to clipboard
interface OutboxPayload

OutboxPayload is the payload of an outbox item, modeled as a marker interface, for clients to use for their payload classes.

Link copied to clipboard

OutboxStatus is the processing status of an outbox item.

Link copied to clipboard
interface OutboxType