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).