Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/carriageway/src/types.ts>QueueCallback

🦥 Run async functions with limited concurrency and optional rate limiting
Latest
type alias QueueCallback
import { type QueueCallback } from "https://deno.land/x/carriageway@v0.12.0/src/types.ts";

Queue item callback function

definition: (item: T) => R | Promise<R>