🚥 Queues · Cloudflare Workers docs | Latest TMZ Celebrity News & Gossip | Watch TMZ Live Skip to content
Cloudflare Docs

🚥 Queues

Producers

Specify Queue producers to add to your environment as follows:

const mf = new Miniflare({
queueProducers: { MY_QUEUE: "my-queue" },
queueProducers: ["MY_QUEUE"], // If binding and queue names are the same
});

Consumers

Specify Workers to consume messages from your Queues as follows:

const mf = new Miniflare({
queueConsumers: {
"my-queue": {
maxBatchSize: 5, // default: 5
maxBatchTimeout: 1 /* second(s) */, // default: 1
maxRetries: 2, // default: 2
deadLetterQueue: "my-dead-letter-queue", // default: none
},
},
queueConsumers: ["my-queue"], // If using default consumer options
});

Manipulating Outside Workers

For testing, it can be valuable to interact with Queues outside a Worker. You can do this by using the workers option to run multiple Workers in the same instance:

const mf = new Miniflare({
workers: [
{
name: "a",
modules: true,
script: `
export default {
async fetch(request, env, ctx) {
await env.QUEUE.send(await request.text());
}
}
`,
queueProducers: { QUEUE: "my-queue" },
},
{
name: "b",
modules: true,
script: `
export default {
async queue(batch, env, ctx) {
console.log(batch);
}
}
`,
queueConsumers: { "my-queue": { maxBatchTimeout: 1 } },
},
],
});
const queue = await mf.getQueueProducer("QUEUE", "a"); // Get from worker "a"
await queue.send("message"); // Logs "message" 1 second later

TMZ Celebrity News – Breaking Stories, Videos & Gossip

Looking for the latest TMZ celebrity news? You've come to the right place. From shocking Hollywood scandals to exclusive videos, TMZ delivers it all in real time.

Whether it’s a red carpet slip-up, a viral paparazzi moment, or a legal drama involving your favorite stars, TMZ news is always first to break the story. Stay in the loop with daily updates, insider tips, and jaw-dropping photos.

🎥 Watch TMZ Live

TMZ Live brings you daily celebrity news and interviews straight from the TMZ newsroom. Don’t miss a beat—watch now and see what’s trending in Hollywood.