Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions force-app/main/default/classes/Async.cls
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ public inherited sharing class Async {
return new QueueableBuilder();
}

public static ChunkBuilder chunk(ChunkJob job, ChunkSource source) {
return new ChunkBuilder(job, source);
}

public static BatchableBuilder batchable(Object job) {
return new BatchableBuilder(job);
}
Expand Down
Loading
Loading