- Salesforce Blogs -

Queueable Apex Job

Queueable Apex Job

Introduction

A Queueable job that adds the job to the queue and each job runs when system resources become available.

Apex processes that run for a long time, such as extensive database operations or external Web service callouts, you can run them asynchronously by implementing the Queueable interface and adding a job to the Apex job queue Queueable Apex job runs in the background in its own thread and doesn’t delay the execution of your main Apex logic. Each queued job runs when system resources become available. Queueable interface methods help in increasing some governor limits are higher than for synchronous Apex, such as heap size limits.

Benefits of Salesforce Queueable Apex Jobs

Queueable apex jobs and future methods both are queued for execution, but Queueable jobs provide you with these additional benefits.

Read: How Long Does It Take To Learn Salesforce? Get a Real Estimate
  • Getting an ID for your job:
  • When you submit your job by invoking the System. Enqueue Job method, the method returns the ID of the new job.
  • Using non-primitive types:
  • It contains some variables of non-primitive data types, such as sObjects or custom Apex types. Those objects can be accessed when the job executes.
  • Chaining jobs: You can chain one job to another job by starting a second job from a running job. Chaining jobs is useful if you need to do some processing that depends on another process to have run first.
  • You can Control Processes with Queueable Apex.

Enroll for an online Salesforce Training and become a Salesforce expert in just a matter of 6 weeks.

Things to Remember while Learning what Queueable Apex Job is-

  1. The execution of a queued job counts once against the shared limit for asynchronous Apex method executions.
  2. enqueue Job can add up to 50 jobs to the queue within a single transaction.
  3. When chaining jobs, you can add only one job from an executing job with System. Enqueue Job, which means that only one child's job can exist for each parent Queueable job.
  4. No limit is enforced on the depth of chained jobs, which means that you can chain one job to another job and repeat this process with each new child job to link it to a new child job. However, for Developer Edition and Trial orgs, the maximum stack depth for chained jobs is 5.

Sample Code:


public class QueueableExample implements Queueable {
public void execute(QueueableContext context) {
        Account a = new Account(Name='Daniel',Phone='(+12) 354-45345');
insert a;        
    }
}

Debug

ID jobID = System.enqueueJob(new QueueableExample());
system.debug(jobId);

Queueable Apex Job Queueable Apex Job  

Read: How to Create Salesforce Records Type For Custom Objects?

Now learn Salesforce at your own pace with our Salesforce Self-learning program.

Learn Salesforce in the Easiest Way

  • Learn from the videos
  • Learn anytime anywhere
  • Pocket-friendly mode of learning
  • Complimentary eBook available
Buy Self-learning at Discounted Price

Read: Difference Between Microsoft Dynamics and Salesforce CRM.

Conclusion

Did you understand what Queueable Apex in Salesforce is about? Go to Janbask Training to learn more about Salesforce and its aspects. Also, sign up for a Salesforce course to have an in-depth understanding of it.

JanBask Training Team

Written by

JanBask Training Team

The JanBask Training Team includes certified professionals and expert writers dedicated to helping learners navigate their career journeys in QA, Cybersecurity, Salesforce, and more. Each article is carefully researched and reviewed to ensure quality and relevance.

View all blogs

Leave a comment

Keep reading

Related Salesforce Blogs

Explore more Salesforce blogs

More Salesforce articles to go deeper on this topic — tutorials, comparisons, and career guides from the same category.

Explore Career Programs Built for the AI Era

Choose from live, mentor-led programs designed around today’s fastest-growing technology skills and tomorrow’s AI-powered job roles.

Explore More

Salesforce Career Programs

Live, mentor-led Salesforce programs designed around the same skills this blog covers.

Explore Salesforce courses

Explore more topics

Browse Blog Categories

Jump to another subject — AI, Cloud, Salesforce, Data, Testing, and more — and keep learning by topic.

Interviews

Browse Categories