-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQueue.ts
72 lines (60 loc) · 1.18 KB
/
Queue.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
// @ts-nocheck
import { QueueWork } from './Commands/QueueWork'
import { DuplicateQueueException } from './Errors/DuplicateQueueException'
import type BeeQueue from 'bee-queue'
const bee = require('bee-queue')
const settings = {
default: null,
queues: {}
}
/**
* Create a new queue.
*/
const createQueue = (name: string, config) => {
if (settings.queues[name]) {
throw new DuplicateQueueException(`Queue "${name}" already exists.`)
}
const queue = new bee(name, config)
settings.queues[name] = queue
}
/**
* Get queue.
*/
const queue = (name?: string): BeeQueue<any> => {
if (!name) {
name = settings.default
}
return settings.queues[name]
}
/**
* Get registered queues.
*/
const registered = (): string[] => {
return Object.keys(settings.queues)
}
class Queue {
/**
* Add on ready event.
*/
static onReady(callback: CallableFunction): void {
QueueWork.onReady(callback)
}
/**
* Add on error event.
*/
static onError(callback: CallableFunction): void {
QueueWork.onError(callback)
}
/**
* Add on log event.
*/
static onLog(callback: CallableFunction): void {
QueueWork.onLog(callback)
}
}
export {
createQueue,
Queue,
queue,
registered
}