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
abhik dey 1abhik dey 1 

Future Call out execution order for same object

How to control the order in a future callouts for the same object. In the Account object I need to make two callouts in after insert trigger. Now being future notation my second call out is getting fired first and then the first call out. But I need the other way ....Any ideas?
KevinPKevinP
Try using one @future method that makes both callouts in a given order?