UNPKG

@penkov/tasks_queue

Version:

A lightweight PostgreSQL-backed task queue system with scheduling, retries, backoff strategies, and priority handling. Designed for efficiency and observability in modern Node.js applications.

7 lines (6 loc) 115 B
export interface Clock { now(): Date; } export declare class SystemClock implements Clock { now(): Date; }