-
Notifications
You must be signed in to change notification settings - Fork 43
Concurrency
Lucas Nelaupe edited this page Jan 12, 2018
·
2 revisions
By default, all jobs will run in sequence. You can decide to create multiple queues and run job in parallel. To do this you need to specify a group name in JobBuilder
.
jobBuilder.group(name: "tweet")
All job with group "tweet" will run in sequence. But job with other names will run in parallel.