How to check Async Apex Usage in Salesforce?
DailyAsyncApexExecutions Limit from System.OrgLimit can be used to check Async Apex Usage in Salesforce. Sample Code: Map < String,System.OrgLimit > limitsMap = OrgLimits.getMap(); System.OrgLimit objAsyncLimit = limitsMap.get( 'DailyAsyncApexExecutions' ); System.debug( ....