QueueFailureDispositionPer-error disposition returned by QueueHyperlinkConfigWithoutItemSchema.onFailure.
"retry"— re-enqueue the item at its own priority, honoring theattemptsbudget (emitsRetryScheduled, orRetryExhaustedonce the budget is spent)."deadLetter"— emit aDeadLetteredevent; do not re-enqueue."drop"— emit aDroppedevent; do not re-enqueue."default"— fall back to the queue's policy (auto re-enqueue whenattemptsis set, otherwise log a warning).
modelsQueueHyperlinkConfigWithoutItemSchema.onFailure
Source src/internal/queueHyperlink.ts:10581 lines
export type type QueueFailureDisposition =
| "retry"
| "deadLetter"
| "drop"
| "default"
Per-error disposition returned by
QueueHyperlinkConfigWithoutItemSchema.onFailure
.
"retry" — re-enqueue the item at its own priority, honoring the attempts budget
(emits RetryScheduled, or RetryExhausted once the budget is spent).
"deadLetter" — emit a DeadLettered event; do not re-enqueue.
"drop" — emit a Dropped event; do not re-enqueue.
"default" — fall back to the queue's policy (auto re-enqueue when attempts is set,
otherwise log a warning).
QueueFailureDisposition = "retry" | "deadLetter" | "drop" | "default";
Referenced by 1 symbols