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: All you want to know about Junction Object - Salesforce
- 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-
- The execution of a queued job counts once against the shared limit for asynchronous Apex method executions.
- enqueue Job can add up to 50 jobs to the queue within a single transaction.
- 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.
- 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);
Read: Is it worth to learn Salesforce? Top 10 Reasons to Learn Salesforce?
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
Read: What are Escalation Rules in Salesforce?
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.
Salesforce Course
Upcoming Batches
Trending Courses
Cyber Security
- Introduction to cybersecurity
- Cryptography and Secure Communication
- Cloud Computing Architectural Framework
- Security Architectures and Models
Upcoming Class
4 days 22 Nov 2024
QA
- Introduction and Software Testing
- Software Test Life Cycle
- Automation Testing and API Testing
- Selenium framework development using Testing
Upcoming Class
14 days 02 Dec 2024
Salesforce
- Salesforce Configuration Introduction
- Security & Automation Process
- Sales & Service Cloud
- Apex Programming, SOQL & SOSL
Upcoming Class
2 days 20 Nov 2024
Business Analyst
- BA & Stakeholders Overview
- BPMN, Requirement Elicitation
- BA Tools & Design Documents
- Enterprise Analysis, Agile & Scrum
Upcoming Class
5 days 23 Nov 2024
MS SQL Server
- Introduction & Database Query
- Programming, Indexes & System Functions
- SSIS Package Development Procedures
- SSRS Report Design
Upcoming Class
5 days 23 Nov 2024
Data Science
- Data Science Introduction
- Hadoop and Spark Overview
- Python & Intro to R Programming
- Machine Learning
Upcoming Class
4 days 22 Nov 2024
DevOps
- Intro to DevOps
- GIT and Maven
- Jenkins & Ansible
- Docker and Cloud Computing
Upcoming Class
0 day 18 Nov 2024
Hadoop
- Architecture, HDFS & MapReduce
- Unix Shell & Apache Pig Installation
- HIVE Installation & User-Defined Functions
- SQOOP & Hbase Installation
Upcoming Class
4 days 22 Nov 2024
Python
- Features of Python
- Python Editors and IDEs
- Data types and Variables
- Python File Operation
Upcoming Class
12 days 30 Nov 2024
Artificial Intelligence
- Components of AI
- Categories of Machine Learning
- Recurrent Neural Networks
- Recurrent Neural Networks
Upcoming Class
5 days 23 Nov 2024
Machine Learning
- Introduction to Machine Learning & Python
- Machine Learning: Supervised Learning
- Machine Learning: Unsupervised Learning
Upcoming Class
39 days 27 Dec 2024
Tableau
- Introduction to Tableau Desktop
- Data Transformation Methods
- Configuring tableau server
- Integration with R & Hadoop
Upcoming Class
4 days 22 Nov 2024