queue.code-snippets 550 B

123456789101112131415161718192021222324
  1. {
  2. "queue": {
  3. "prefix": "queue",
  4. "body": [
  5. "import { Provide } from '@midwayjs/decorator';",
  6. "import { ICoolQueue, Queue } from 'midwayjs-cool-queue';",
  7. "",
  8. "/**",
  9. " * 队列",
  10. " */",
  11. "@Queue()",
  12. "@Provide()",
  13. "export abstract class xxxQueue implements ICoolQueue {",
  14. " data(job: any, done: any): void {",
  15. " console.log('收到的数据', job.data);",
  16. " done();",
  17. " }",
  18. "}",
  19. ""
  20. ],
  21. "description": "cool-admin service代码片段"
  22. }
  23. }