Files
strataspheredatamanagement/src/Strata.Stratasphere.Biz/Configuration/Hangfire/DeleteOnSuccessAttribute.cs
T
2026-06-23 11:26:55 -05:00

16 lines
494 B
C#

using Hangfire.Common;
using Hangfire.States;
namespace Strata.Stratasphere.Biz.Configuration.Hangfire
{
public class DeleteOnSuccessAttribute : JobFilterAttribute, IElectStateFilter
{
public void OnStateElection(ElectStateContext context)
{
if (context.CandidateState.Name == SucceededState.StateName)
{
context.CandidateState = new DeletedState { Reason = "This job is deleted on success." };
}
}
}
}