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
Lakshmi SLakshmi S 

can we write the asynchronous trigger?

Hi Team,

Is is possible to write Asynchronous Trigger?

Regards
Lakshmi
VamsiVamsi
Hi,

Yes, we can initiate asynchronous requests from Apex Trigger 
Luigi FranciosiLuigi Franciosi
Check out this documentation on it:

https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_triggers.htm

They can come in very handy when you have multiple processes working on the same trigger. 
sunny.sfdcsunny.sfdc
No you cannot write asynchronous triggers. But you can generate asynchronous requests from a trigger.

You can create time based workflows or use process builder but to a limited extent only.
Nathan SNathan S
Asynchronous Triggers are released in Summer '19. Here is the blog post:
https://developer.salesforce.com/blogs/2019/06/get-buildspiration-with-asynchronous-apex-triggers-in-summer-19.html

This was the top post in Google while I was looking for documentation on the new async trigger feature and figured it would be worth updating.