iii-queue The worker provides asynchronous job processing with retries, configurable concurrency, FIFO ordering, and dead-letter (DLQ) support. It runs in two modes. Topic-based queues are durable pub/sub: register a consumer with a trigger and produce with — every distinct function subscribed to a topic receives a copy of each message (fan-out). Named queues are defined in config ( ) and targeted by enqueuing a function call with — no trigger registration needed, the target function is the consumer. Three adapters back delivery: (in-process; or ; single-instance; retries + DLQ + FIFO), (dura…