Table of Contents

Class RecurringQuery

Namespace
Millrace.Storage.Monitoring
Assembly
Millrace.dll
public sealed record RecurringQuery : IEquatable<RecurringQuery>
Inheritance
RecurringQuery
Implements
Inherited Members

Remarks

Ordered NextFireTime ASC, Id ASC — soonest first, the opposite of the job and instance queries. A schedule view is read forwards in time ("what runs next"), where a job list is read backwards ("what just happened").

There is no state filter because a definition has no state: it is either overdue or not, which the caller derives by comparing NextFireTime to now.

Fields

DefaultLimit

Default page size when Limit is not set to something valid.

MaxLimit

Upper bound a provider clamps Limit to.

Properties

Cursor

Opaque continuation from a previous NextCursor; null starts at the first page.

Limit

Maximum rows to return. Values below 1 are treated as DefaultLimit; values above MaxLimit are clamped to it. Never an error.

Queue

Exact queue name, or null for every queue.

Tenant

Tenant constraint; defaults to Any.