9 lines
266 B
C#
9 lines
266 B
C#
namespace ControlPlane.Core.Interfaces;
|
|
|
|
public interface ISagaStep
|
|
{
|
|
string StepName { get; }
|
|
Task ExecuteAsync(SagaContext context, CancellationToken cancellationToken);
|
|
Task CompensateAsync(SagaContext context, CancellationToken cancellationToken);
|
|
}
|