Queueable Apex in Salesforce
As we discussed in Future class, to overcome the control over the tracking of the future methods running status. Queuable apex takes control of your asynchronous Apex processes by using the Queueable interface. This interface enables you to add jobs to the queue and monitor them. To use Queueable Apex, a developer needs to create […]
Read MoreLatest Web designing Techniques in 2022
We have to follow below best practices before developing every website because it will increase your branding in the market. Website structure is more important in website development because search engines visible your website based on website structure. Think about how is your website developed? followed all best practices? Your website position on the web […]
Read MoreDisadvantages of future class
We already discussed complete details about the future class. If you want to directly look into this post check the below 2 posts to understand. Future class Basics and limitations: Click Here Where / When to use Future Class: Click Here Below are the disadvantages of using Future class : We cannot monitor the Jobs. […]
Read MoreScenarioes to use future class in salesforce
Below are the common scenarios to use future class in salesforce : A future method runs in the background. it is asynchronous. It is mainly used for long-running operations. Future class Basics and limitations: Click Here Disadvantages of Future class: Click Here A benefit of using future methods is that some governor limits are higher, […]
Read MoreFuture Class in Salesforce
Let’s understand, What is a Future class in salesforce is and its importance. The future class is used for long-running operations, It will run in the background. It is an Asynchronous. It will run the Process in a separate thread when the resource is available. We can define the Future class with @future annotation. Syntax […]
Read More