Enqueuing jobs
Firing off jobs only requires a few lines of code
Usage
Enqueuing a job immediately
client.enqueue(wizard -> {
wizard.queue("high")
.task("sayHello");
return wizard;
});Enqueuing a job in the future
client.enqueueIn(wizard -> {
wizard.period("2m")
.queue("high")
.task("sayHello");
return wizard;
});Options
Name
Description
Last updated