Spaces:
Sleeping
Sleeping
File size: 1,738 Bytes
21a9b1b 8a85206 21a9b1b 8a85206 21a9b1b 8a85206 21a9b1b 8a85206 21a9b1b 8a85206 21a9b1b 8a85206 |
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 73 |
import { asyncHandler } from '@helpers/async-handler';
import EventEmitter from 'node:events';
/**
* EventsManager is a singleton class that manages events.
* It uses the EventEmitter class from Node.js to handle events.
*/
export class EventsManager {
private static instance: EventsManager;
private emitter: EventEmitter;
private constructor() {
this.emitter = new EventEmitter();
}
public static getInstance(): EventsManager {
if (!EventsManager.instance) {
EventsManager.instance = new EventsManager();
}
return EventsManager.instance;
}
/**
* Register an event listener.
* @param event The event name.
* @param listener The listener function.
*/
public static on(event: string, listener: (...args: any[]) => void | Promise<void>): void {
try {
EventsManager.getInstance().emitter.on(event, asyncHandler(listener));
} catch (error) {
console.error(error);
}
}
/**
* Remove an event listener.
* @param event The event name.
* @param listener The listener function.
*/
public static emit(event: string, ...args: any[]): void {
EventsManager.getInstance().emitter.emit(event, ...args);
}
/**
* Create a queue to store events.
* @returns An EventsQueue object.
* @see EventsQueue
*/
public createQueue() {
return new class EventsQueue {
private queue: any[] = [];
public add(event: string, ...args: any[]): void {
this.queue.push({ event, args });
}
public clear() {
this.queue = [];
}
public process() {
this.queue.forEach((item) => {
EventsManager.emit(item.event, ...item.args);
});
this.clear();
}
}
}
}
|