Skip to content

ProducerHandle

Defined in: src/delivery/ReliableDelivery.ts:20

Handle returned to the publishing user code. tell enqueues a message for reliable delivery; an optional confirm callback fires once the consumer has Acked (or on producer shutdown with an Error).

T

readonly ref: ActorRef<ProducerSend<T>>

Defined in: src/delivery/ReliableDelivery.ts:23

Underlying actor ref — mostly for testing / inspection.

stop(): void

Defined in: src/delivery/ReliableDelivery.ts:24

void


tell(body, confirm?): void

Defined in: src/delivery/ReliableDelivery.ts:21

T

ConfirmationCallback

void