An ibis-lagoon worker crashes after dequeue and the order vanishes. Which receive mode should the developer use so unfinished work can reappear?
Select an answer to reveal the explanation.
Short Explanation
Receive-and-delete is a one-way ticket. Use peek-lock: lock, do the work, complete — and if the worker dies, the lock expires and the message comes back.
Full Explanation
Peek-lock delivers at-least-once semantics: the broker locks the message while the worker processes it; complete removes it, while abandon or lock timeout returns it for another attempt. Receive-and-delete removes the message immediately and risks loss on crash. HTTP-only and Capture are not Service Bus receive modes.