-
Notifications
You must be signed in to change notification settings - Fork 299
Writing Task Activities
Affan Dar edited this page Jan 30, 2015
·
1 revision
Task Activities are the ‘leaf’ nodes of an orchestration. This is the code which actually performs a unit of operation within the orchestration. This is plain C# code with no constraints.
Task Activity code is guaranteed to be called at least once. However in error cases it might be invoked multiple times so idempotence is desirable.
Note: In a future version of the framework, users would be able to switch the guarantee to at-most-once instead of at-least-once thus giving them more control in the orchestration code.