Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to rollback service Transaction #1258

Open
MOwaisfarooq opened this issue May 7, 2024 · 0 comments
Open

How to rollback service Transaction #1258

MOwaisfarooq opened this issue May 7, 2024 · 0 comments

Comments

@MOwaisfarooq
Copy link

MOwaisfarooq commented May 7, 2024

If an error occurs in step B of the workflow, I suspend the workflow to publish this event later from the controller API. The _workflowStepDetailsService.UpdateTransactionForStepB has made a transaction in my table stepTable. I want to revert only the step B service transaction that updated the table. I don't want to undo everything, so that next time I can continue from step B after the error. For example, if I made an insertion in step A using _workflowStepDetailsService.CreateTransactionforStepA in my stepTable, I want to preserve that transaction and only undo the changes made by step B.
builder .StartWith(context => Console.WriteLine("Begin")) .UseDefaultErrorBehavior(WorkflowErrorHandling.Suspend) .Saga(saga => saga .StartWith<stepA>() .Then<stepB>() .Then<stepC>() ) .CompensateWith<**UndoEverything**>() .Then(context => Console.WriteLine("End"));
``
public class stepA: StepBodyAsync
{

private readonly IWorkflowStepDetailsService _workflowStepDetailsService;

public stepA(IWorkflowStepDetailsService workflowStepDetailsService)
{
    _workflowStepDetailsService = workflowStepDetailsService;
}

public override async Task<ExecutionResult> RunAsync(IStepExecutionContext context)
{

    if (!context.ExecutionPointer.EventPublished)
    {
        return ExecutionResult.WaitForEvent("StartWorkflowEvent", context.Workflow.Id, DateTime.Now);
    }

    var workflowsteprequest = (WorkFlowStepDetails)context.ExecutionPointer.EventData;
    await _workflowStepDetailsService.CreateTransactionforStepA(workflowsteprequest);

    return ExecutionResult.Next();
}

}

public class stepB : StepBodyAsync
{
private readonly IWorkflowStepDetailsService _workflowStepDetailsService;

public stepB: (IWorkflowStepDetailsService workflowStepDetailsService)
{
    _workflowStepDetailsService = workflowStepDetailsService;
}

public override async Task<ExecutionResult> RunAsync(IStepExecutionContext context)
{

    if (!context.ExecutionPointer.EventPublished)
    {
        return ExecutionResult.WaitForEvent("StartWorkflowEvent", context.Workflow.Id, DateTime.Now);
    }

    var workflowsteprequest = (WorkFlowStepDetails)context.ExecutionPointer.EventData;

    await _workflowStepDetailsService.UpdateTransactionForStepB(workflowsteprequest);

    return ExecutionResult.Next();
}

}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant