Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Communicate with job #1243

Open
Tobjoern opened this issue May 4, 2020 · 0 comments
Open

Communicate with job #1243

Tobjoern opened this issue May 4, 2020 · 0 comments

Comments

@Tobjoern
Copy link

Tobjoern commented May 4, 2020

Hey there,
Thanks for the amazing library!
I'm wondering if it is possible to communicate with a job after it was created.
In my specific example merely changing the data property would be sufficient.
I found out how to do it, but the change of the job is not reflected in the worker (I use clustering).

                            Job.get(rId, (err, job) => {
                                if (job) {
                                    (job.data as QueueRenderPayloadData).shouldStop = true
                                }
                            })

I also tried to emit function:
Job.get(rId, (err, job) => {
if (job) {
const emitWorked = job.emit('customevent', { stop: true })
}
})

But emitWorked is always false, is there something to keep in mind when using clustering and emitting?

Thanks for your help!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant