Also another question, without using Durable Object alarms, is it possible to e.g. delay a queue sen
Also another question, without using Durable Object alarms, is it possible to e.g. delay a queue send request for a certain amount of time?
DelaySeconds (up to 15 minutes) when sending a message would be so nicequeue.send(payload, { delay: 15000 }) would be quite useful, in my case I want to wait couple of minutes before sending it to the queue to give time for other tasks to properly complete that might be coming from other sources.Retries are not done for e.g. consumers that throws errors right?It's my understanding that's exactly when retries are done, when the consumer throws - but probably best for someone orange to confirm
If the queue function throws bitwrangler dev --localIn the future, we expect to support other APIs, such as HTTP endpoints to send or receive messages.

DelaySecondsqueue.send(payload, { delay: 15000 })