UNPKG

@backgroundjs/core

Version:

An extendible background job queue for js/ts applications

12 lines 656 B
export { InMemoryJobStorage } from "./storage/memory-storage.js"; export { PostgreSQLJobStorage } from "./storage/postgresql-storage.js"; export { MongoDBJobStorage } from "./storage/mongodb-storage.js"; export { RedisJobStorage } from "./storage/redis-storage.js"; // Re-export queue implementation export { JobQueue } from "./queue/job-queue.js"; export { RedisJobQueue } from "./queue/redis-job-queue.js"; export { MongoDBJobQueue } from "./queue/mongodb-job-queue.js"; export { PostgreSQLJobQueue } from "./queue/postgresql-job-queue.js"; // Helper factory function export { QueueEvent } from "./utils/queue-event.js"; //# sourceMappingURL=index.js.map