Month End Offerl : Get 30% OFF + $999 Study Material FREE - SCHEDULE CALL

- Salesforce Blogs -

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: What is the Salesforce AppExchange? Packages Installation Guide
  • 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: An Introduction to Apex Class in Salesforce for Beginners

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: Interview With Eric Dreshfield

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.


 user

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.


Comments

Trending Courses

Gen AI icon

Gen AI

Gen AI icon

Upcoming Class

6 days 30 Jun 2026

Agentic AI icon

Agentic AI

Agentic AI icon

Upcoming Class

2 days 26 Jun 2026

AI in Automation Testing icon

AI in Automation Testing

AI in Automation Testing icon

Upcoming Class

9 days 03 Jul 2026

Cyber Security icon

Cyber Security

  • Introduction to cybersecurity
  • Cryptography and Secure Communication 
  • Cloud Computing Architectural Framework
  • Security Architectures and Models
Cyber Security icon

Upcoming Class

9 days 03 Jul 2026

Data Science icon

Data Science

  • Data Science Introduction
  • Hadoop and Spark Overview
  • Python & Intro to R Programming
  • Machine Learning
Data Science icon

Upcoming Class

10 days 04 Jul 2026

QA icon

QA

  • Introduction and Software Testing
  • Software Test Life Cycle
  • Automation Testing and API Testing
  • Selenium framework development using Testing
QA icon

Upcoming Class

8 days 02 Jul 2026

Salesforce Service Cloud icon

Salesforce Service Cloud

  • Industry Knowledge Introduction
  • Adoption and Maintenance
  • Interaction Channels Introduction
  • Integration and Data Management
Salesforce Service Cloud icon

Upcoming Class

9 days 03 Jul 2026

AWS icon

AWS

  • AWS & Fundamentals of Linux
  • Amazon Simple Storage Service
  • Elastic Compute Cloud
  • Databases Overview & Amazon Route 53
AWS icon

Upcoming Class

8 days 02 Jul 2026

Interviews