Skip to main content

Redwood

api/src/functions/someQueue.js
import { Queue } from "quirrel/redwood";

export const handler = Queue(
"someQueue",
async (job, meta) => {
// do something
}
);

export default handler;

Creates a new Queue. Make sure to export it from a Serverless Function, otherwise it won't work.

Parameters

function Queue<T>(
path: string,
worker: (job: T, meta: JobMeta): Promise<void>,
defaultJobOptions?: { exclusive?: boolean }
): QueueInstance<T>
ParameterUsage
pathThe route that this queue is reachable at.
workera function that takes the job's payload and returns a Promise
defaultJobOptionsOptional. Use to set default options applied to every job.