Given the following code:
global class MyBatch implements Database.Batchable<SObject> { global MyBatch() {} global void execute(Database.BatchableContext BC, List<MyBatch Field__c> batch) { } global void finish(Database.BatchableContext BC) {} } What does this error Message mean?
MyBatch: Class must implement the global interface method: Iterable<SObject> start(Database.BatchableContext) from Database.Batchable<SObject>