DeliveryPolicy

data class DeliveryPolicy(val capacity: Int = DEFAULT_CAPACITY, val overflow: Overflow = Overflow.SUSPEND)

How an in-process fabric buffers frames for one receiver: a bounded capacity and an overflow strategy. There is deliberately no UNLIMITED option — unbounded delivery is the defect this type exists to make unrepresentable (#701).

Constructors

Link copied to clipboard
constructor(capacity: Int = DEFAULT_CAPACITY, overflow: Overflow = Overflow.SUSPEND)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
Link copied to clipboard