Skip to content

Instantly share code, notes, and snippets.

@durveshshah
Created March 12, 2024 21:54
Show Gist options
  • Save durveshshah/1f95afc5353db842fa3e18baf170f984 to your computer and use it in GitHub Desktop.
Save durveshshah/1f95afc5353db842fa3e18baf170f984 to your computer and use it in GitHub Desktop.
public class MyQueueable implements Queueable {
public void execute(QueueableContext context) {
// Perform long-running task here
}
}
// Enqueue the Queueable job
System.enqueueJob(new MyQueueable());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment