BotSharp/src/Infrastructure/BotSharp.Abstraction/Crontab/ICrontabSource.cs
Jicheng Lu e35fbc7439 refine
2025-05-07 16:34:39 -05:00

15 lines
336 B
C#

namespace BotSharp.Abstraction.Crontab;
/// <summary>
/// Provide a cron source for the crontab service.
/// </summary>
public interface ICrontabSource
{
/// <summary>
/// Set to true if the cron is real-time like Change Data Capture (CDC).
/// </summary>
bool IsRealTime => false;
CrontabItem GetCrontabItem();
}