Skip to content

Instantly share code, notes, and snippets.

@sunilmurali
Last active July 8, 2022 08:27
Show Gist options
  • Save sunilmurali/44a968ff1ce910980272 to your computer and use it in GitHub Desktop.
Save sunilmurali/44a968ff1ce910980272 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