ScheduleReport record
Represents a report of scheduled jobs at a specific time. Contains the generation time and a list of job information. This is useful for monitoring and auditing scheduled tasks.
public record ScheduleReport
Public Members
name | description |
---|---|
ScheduleReport(…) | Represents a report of scheduled jobs at a specific time. Contains the generation time and a list of job information. This is useful for monitoring and auditing scheduled tasks. |
GeneratedAt { get; set; } | The time the report was generated. |
Jobs { get; set; } | The list of job information. |
Remarks
This report can be used to track the status and execution history of scheduled jobs. It is particularly useful for debugging and operational monitoring.
See Also
- namespace Kestrun.Scheduling