Advertisement
Learnify_Rectify

Schedule synchronization

Jul 10th, 2024 (edited)
10,108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | Source Code | 0 0
  1. Schedule synchronization from (Superbadge - Apex Specialist)
  2.  
  3. ----------------------------------------------------------------
  4.  
  5. SOURCE CODE : Schedule synchronization
  6. global with sharing class WarehouseSyncSchedule implements Schedulable{
  7. global void execute(SchedulableContext ctx){
  8. System.enqueueJob(new WarehouseCalloutService());
  9.     }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement