-
-
Save mhamzas/6844968d47bdda9d696b19125f44b76b to your computer and use it in GitHub Desktop.
Apex Queueable Interface Skeleton with Callouts
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
/** | |
* @description Extend a queueable job to complete the merge request from the page | |
* | |
* | |
*/ | |
public class QueueJob implements Queueable, Database.AllowsCallouts { | |
public class QueueJobException extends Exception {} | |
public QueueJob ( ) { | |
} | |
public void execute ( QueueableContext context) { | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment