Field MaximumActiveDeclarations
- Namespace
- MailFathom.Application.Mail.Delivery.Scheduling
- Assembly
- MailFathom.Application.dll
The greatest number of declarations that dispatch at all.
public const int MaximumActiveDeclarations = 500
Returns
- int
- The greatest number of declarations that dispatch at all.
Remarks
It bounds the query a dispatch pass makes, which is what keeps that pass from growing with a table. It is a ceiling rather than a page, deliberately and visibly: the declarations are read oldest first, so a deployment that somehow passed it would have its newest declarations dispatch nothing rather than have every declaration dispatch late — and that is worth being a fault somebody notices instead of a delay nobody can account for.