1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| global class EventToProjectSummaryBatch implements Database.Batchable<sObject> {
| public String query;
|
| global EventToProjectSummaryBatch() {
| this.query = query;
| }
|
| global Database.QueryLocator start(Database.BatchableContext bc) {
| return Database.getQueryLocator(query);
| }
|
| global void execute(Database.BatchableContext BC, list<Sobject> scope) {
|
| }
|
| global void finish(Database.BatchableContext BC) {
|
| }
| }
|
|