Files
KArtSell.Aegis/templates/hangfire/ReliableJob.cs.template
T
kjh2064 dcd1322d41
ci / backend (push) Failing after 12s
ci / frontend (push) Failing after 19s
ci / static (push) Failing after 45s
Initial commit: Add project files
2026-08-02 05:15:36 +09:00

14 lines
487 B
Plaintext

using Hangfire;
public sealed class __JOB__(IJobRunRepository runs, IClock clock)
{
[Queue("__QUEUE__")]
[AutomaticRetry(Attempts = 0)] // retry policy is explicit and evidence-driven
public async Task ExecuteAsync(JobCommand command, CancellationToken ct)
{
// TryStart(idempotency/scope/version/hash) → heartbeat → work → Complete.
// No current-value overwrite; reprocess creates a revision.
throw new NotImplementedException();
}
}