We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d9e05a commit 41b176fCopy full SHA for 41b176f
1 file changed
website/api/batchable.md
@@ -6,9 +6,11 @@ Common Batchable example:
6
7
```apex
8
Database.Batchable<Object> job = new MyBatchJob();
9
+
10
Async.AsyncResult result = Async.batchable(job)
11
.scopeSize(100)
12
.execute();
13
14
System.debug('Batch job enqueued: ' + result);
15
```
16
0 commit comments