This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<aura:documentation> | |
<aura:description>Documentation</aura:description> | |
<aura:example name="ExampleName" ref="exampleComponentName" label="Label"> | |
Example Description | |
</aura:example> | |
</aura:documentation> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public without sharing class DoStuffApex implements Database.Batchable<SObject>, Database.AllowsCallouts, Schedulable { | |
public List<String> errors = new List<String>(); | |
public DoStuffApex() { | |
} | |
public void execute(SchedulableContext param1) { | |
DoStuffApex pUpdateOwner = new DoStuffApex(); | |
database.executeBatch(pUpdateOwner, 10000); |
NewerOlder