Skip to content

Instantly share code, notes, and snippets.

View ThijsWouters's full-sized avatar

Thijs Wouters ThijsWouters

  • Meerhout, Belgium
View GitHub Profile
@ThijsWouters
ThijsWouters / BatchJob.cls
Last active September 21, 2015 14:47 — forked from mjgallag/BatchJob.cls
Scheduled Batch Job Test Example
global class BatchJob implements Database.Batchable<Account> {
global Account[] start(Database.BatchableContext batchableContext) {return new Account[]{};}
global void execute(Database.BatchableContext batchableContext, Account[] accounts) {}
global void finish(Database.BatchableContext batchableContext) {}
}