I want to perform some action when a job is added into the queue. I have studied nestjs documentation for queues but didn’t find any event decorator that handles add events (something like onQueueAdded
). Whereas other events are available like @OnQueueWaiting
and onQueueCompleted
. When I checked bullmq documentation I found added
event. How can I use this in nestjs?