Field MaximumEntriesErasedPerPass
- Namespace
- MailFathom.Application.Mail.Mutations.Audit
- Assembly
- MailFathom.Application.dll
The greatest number of entries one pass erases.
public const int MaximumEntriesErasedPerPass = 5000
Returns
- int
- The greatest number of entries one pass erases.
Remarks
It is a constant rather than a setting because nothing an operator would tune depends on it: a pass that reaches the bound is followed by another on the account's next run, so the number decides how long a backlog takes to clear rather than what is kept. What it exists for is the one case that produces a backlog at all — an operator shortening a long window — where an unbounded delete would lock the trail against every append behind it.