Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mhamzas/6844968d47bdda9d696b19125f44b76b to your computer and use it in GitHub Desktop.
Save mhamzas/6844968d47bdda9d696b19125f44b76b to your computer and use it in GitHub Desktop.
Apex Queueable Interface Skeleton with Callouts
/**
* @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