Concepts


Atarc Process and FEA Pattern


You can leverage ATARC built in FEA support, when creating your Atarc Process apex helpers extend from AsyncTriggerArc.AsyncTriggerArcFEAProcessBase apex abstract class. It comes with three methods to override filter, execute, action, each corresponding to FEA design pattern implementation.

filter method is executed first, once per record in the trigger transaction.

execute method is executed after the filter execution, only once per apex trigger transaction.

action method is executed at last once per record in the apex trigger transaction