function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
NewSFDCDeveloperNewSFDCDeveloper 

What's the difference between future calls and queueable interface?

Best Answer chosen by NewSFDCDeveloper
RituSharmaRituSharma
Refer this blog -> https://www.emizentech.com/blog/future-vs-queueable-apex.html

All Answers

RituSharmaRituSharma
Refer this blog -> https://www.emizentech.com/blog/future-vs-queueable-apex.html
This was selected as the best answer
NewSFDCDeveloperNewSFDCDeveloper
Thanks for the prompt response. Can we call one from another?
RituSharmaRituSharma
Both run in future context so ideally you should not be able to call one from another.
RituSharmaRituSharma
Use queueable, when you want to do something in sequence.