You need to sign in to do that
Don't have an account?
Thennakon Witharanage Anusha
Synchronous and Asynchronous Apex
What is Synchronous and Asynchronous Apex ?
function readOnly(count){ }
You need to sign in to do that
Don't have an account?
If this answers your query please mark this question as a solved so that it can be filtered out from unsolved questions.
Synchronous execution takes place as a single transaction and it does not wait for available resources. While asynchronous execution takes place depending on the resources available. @future, batch apex are examples of asynchronous execution. Governer limits in case of asynchronous are higher as compared to synchronous. In asynchronous operations; the code is executed in the background and the user is free to perform other operations.