Skip to content

Instantly share code, notes, and snippets.

View codefriar's full-sized avatar

Kevin Poorman codefriar

View GitHub Profile
@codefriar
codefriar / MonitorAsyncUsage.cls
Created November 30, 2023 19:01 — forked from brianmfear/MonitorAsyncUsage.cls
Notify Admin when approaching Async Apex usage limit
public class MonitorAsyncUsage implements Schedulable {
public class ResourceInfo {
public Integer Max;
public Integer Remaining;
}
public class LimitsAPI {
public ResourceInfo DailyAsyncApexExecutions;
}