Skip to content

v2.0.3

Compare
Choose a tag to compare
@lorisleiva lorisleiva released this 09 Jan 13:28
· 127 commits to main since this release
8d61831

Support batchable jobs.

Bus::batch([
    FirstAction::makeJob(1),
    SecondAction::makeJob(2),
    ThirdAction::makeJob(3),
])->then(function () {
    // All jobs completed successfully...
})->dispatch();