Concurrency - lucas34/SwiftQueue GitHub Wiki
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.