Skip to main content

Netlify

functions/someQueue.js
import { Queue } from "quirrel/netlify";

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

export default handler;

Creates a new Queue. Make sure to export it from a 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.