Skip to content

Commit

Permalink
Mobile adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
pkozuchowski committed Sep 26, 2023
1 parent a786fb0 commit e3b0b1f
Show file tree
Hide file tree
Showing 35 changed files with 2,365 additions and 1,360 deletions.
8 changes: 4 additions & 4 deletions docs/BatchSchedulable.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ error.
### Constructors
```apex | Interface
class BatchSchedulable implements Schedulable {
BatchSchedulable(Type batchClass) {}
BatchSchedulable(Type batchClass, Map<String, Object> params) {}
BatchSchedulable(Type batchClass, Map<String, Object> params, Integer batchSize) {}
BatchSchedulable(Type batchClass) {}
BatchSchedulable(Type batchClass, Map<String, Object> params) {}
BatchSchedulable(Type batchClass, Map<String, Object> params, Integer batchSize) {}
}
```

Expand All @@ -32,7 +32,7 @@ class BatchSchedulable implements Schedulable {
### Usage
```apex | Usage | The job will run everyday at 12:00 and execute SObjectCleanerBatch batch.
Scheduler.scheduleDaily('SObject Cleaner', 12, 00,
new BatchSchedulable(SObjectCleanerBatch.class)
new BatchSchedulable(SObjectCleanerBatch.class)
);
```

Loading

0 comments on commit e3b0b1f

Please sign in to comment.