文件名称:路由工人:处理bullmq工作的更便捷方法
文件大小:8KB
文件格式:ZIP
更新时间:2024-03-18 09:23:23
TypeScript
Bullmq的路由工人 工人扩展名。 该工作程序允许您为队列中的特定作业名称注册处理器。 该示例说明了如何使用此软件包。 bullmq是一个对等依赖项,您需要自行安装。 安装 npm i @art-of-coding/routed-worker bullmq [--save] 例子 import RoutedWorker , { Job } from './index' // create a new routed worker with the queue name 'Example' const worker = new RoutedWorker ( 'Example' ) // Interface for job data interface JobData { name : string , age : number } // Add a route,
【文件预览】:
routed-worker-master
----.gitignore(1KB)
----package.json(665B)
----package-lock.json(7KB)
----src()
--------index.ts(1KB)
--------example.ts(494B)
----LICENSE(1KB)
----tsconfig.json(357B)
----README.md(1002B)
----.gitattributes(378B)
----.editorconfig(220B)