Created
October 3, 2019 05:23
-
-
Save olopsman/2b0763902e30f2d350fa4b79f19f6e3e to your computer and use it in GitHub Desktop.
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 void execute(QueueableContext context) { | |
| // Awesome processing logic here | |
| // Chain this job to next job by submitting the next job | |
| System.enqueueJob(new SecondJob()); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment