feat: 初步搭建任务调度管理实现

This commit is contained in:
陈淳
2024-01-12 17:18:39 +08:00
parent 5a65a2e49f
commit e71936063d
2 changed files with 192 additions and 176 deletions

View File

@@ -7,74 +7,59 @@
/// 作业 Id
/// </summary>
public string JobId { get; internal set; }
public string JobId { get; set; }
/// <summary>
/// 作业组名称
/// </summary>
public string GroupName { get; internal set; }
public string GroupName { get; set; }
/// <summary>
/// 作业处理程序类型
/// </summary>
/// <remarks>存储的是类型的 FullName</remarks>
public string JobType { get; internal set; }
public string JobType { get; set; }
/// <summary>
/// 作业处理程序类型所在程序集
/// </summary>
/// <remarks>存储的是程序集 Name</remarks>
public string AssemblyName { get; internal set; }
public string AssemblyName { get; set; }
/// <summary>
/// 描述信息
/// </summary>
public string Description { get; internal set; }
public string Description { get; set; }
/// <summary>
/// 是否采用并行执行
/// </summary>
/// <remarks>如果设置为 false那么使用串行执行</remarks>
public bool Concurrent { get; internal set; } = true;
public bool Concurrent { get; set; } = true;
/// <summary>
/// 是否扫描 IJob 实现类 [Trigger] 特性触发器
/// </summary>
public bool IncludeAnnotations { get; internal set; } = false;
public bool IncludeAnnotations { get; set; } = false;
/// <summary>
/// 作业信息额外数据
/// </summary>
public string Properties { get; internal set; } = "{}";
public string Properties { get; set; } = "{}";
/// <summary>
/// 作业更新时间
/// </summary>
public DateTime? UpdatedTime { get; internal set; }
/// <summary>
/// 标记其他作业正在执行
/// </summary>
/// <remarks>当 <see cref="Concurrent"/> 为 false 时有效,也就是串行执行</remarks>
internal bool Blocked { get; set; } = false;
/// <summary>
/// 作业处理程序运行时类型
/// </summary>
internal string RuntimeJobType { get; set; }
/// <summary>
/// 作业信息额外数据运行时实例
/// </summary>
internal string RuntimeProperties { get; set; }
public DateTime? UpdatedTime { get; set; }
public string TriggerArgs { get; set; }