This file contains 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 class MonitorAsyncUsage implements Schedulable { | |
public class ResourceInfo { | |
public Integer Max; | |
public Integer Remaining; | |
} | |
public class LimitsAPI { | |
public ResourceInfo DailyAsyncApexExecutions; | |
} |
This file contains 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
/** | |
* ContactTriggerHandler description | |
* @description this class is responbile for... | |
* @author Kevin Poorman | |
* @updated 8/26/19 | |
*/ | |
public with sharing class CommentingOnCodeExercise { | |
/** |
This file contains 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 with sharing class WeekFiveHomework { | |
public static void setsReview(){ | |
//Your assignment: Play with Sets! | |
// 1. Create a set of Strings and add at least 5 entries | |
Set<String> Colors = new Set<String>(); | |
Colors.add('Pink'); |
This file contains 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 class DestroyAllTheThings { | |
public DestroyAllTheThings() {} | |
public void destroySimpleCRMStuff() { | |
//First clear out known dependents, leads and cases etc. |