gpt4 book ai didi

c# - 支持更多日期/时间触发器的调度引擎

转载 作者:行者123 更新时间:2023-11-30 12:49:11 24 4
gpt4 key购买 nike

我发现了许多很棒的 .NET 调度引擎,特别是 Quartz.Net 看起来很有前途。但是,我需要一个调度引擎,它不仅可以触发日期和时间,还可以触发任何我能想到的事情。例如,除了基于日期/时间的触发器之外,我可能还想在看到进程已启动、计算机被锁定、关闭 WMI 事件等时触发。

我正在寻找一种解决方案,它允许我实现适当的接口(interface)并在满足我的条件时触发触发器。类似这样的事情是否已经存在,还是我一个人?

这是我看过的一对:

这需要在我的 .NET 应用程序中运行。我考虑修改 Quartz.Net 以支持这种类型的触发,但日期/时间触发器的概念只是根深蒂固;编写我自己的调度程序可能会更容易,因为我不需要将作业和触发器保存到数据库中。

我更愿意使用现有的调度系统,这样我就不必担心实现队列、优先级、线程池等具体细节……但我当然会做我想做的事必须做。

最佳答案

你可以声明一个基础 Task类或接口(interface),无论您喜欢哪个实现 bool属性(property)NeedsToRun和一种方法 Run() .

然后,您可以为每个单独的任务(或使用委托(delegate)函数、任务类型)继承 Task 类,并定义您需要的所有自定义要求,以检查该任务是否需要运行,以及是否需要运行确实,请调用 Run()该特定任务的方法。

将所有任务添加到 List<Task>并定期迭代它们以查看实际需要运行的任务,瞧;你有一个非常简单但有效的调度程序。

就个人而言,我追求的是基于优先级的调度程序,而不是您描述的事件驱动的调度程序,所以我实现了一个 Func<bool>确定任务是否需要运行和 Action实际运行它。我的代码如下:

public class Task : IComparable<Task>
{
public Task(int priority, Action action, Func<bool> needsToRun, string name = "Basic Task")
{
Priority = priority;
Name = name;
Action = action;
_needsToRun = needsToRun;
}

public string Name { get; set; }

public int Priority { get; set; }

private readonly Func<bool> _needsToRun;

public bool NeedsToRun { get { return _needsToRun.Invoke(); } }

/// <summary>
/// Gets or sets the action this task performs.
/// </summary>
/// <value>
/// The action.
/// </value>
public Action Action { get; set; }

public void Run()
{
if (Action != null)
Action.Invoke();
}

#region Implementation of IComparable<in State>

/// <summary>
/// Compares the current object with another object of the same type.
/// </summary>
/// <returns>
/// A value that indicates the relative order of the objects being compared. The return value has the following meanings: Value Meaning Less than zero This object is less than the <paramref name="other"/> parameter.Zero This object is equal to <paramref name="other"/>. Greater than zero This object is greater than <paramref name="other"/>.
/// </returns>
/// <param name="other">An object to compare with this object.</param>
public int CompareTo(Task other)
{
return Priority == other.Priority && Name == other.Name ? 1 : 0;
}

#endregion
}

但我认为这可以适应订阅事件并设置标志以确保 NeedsToRun只要相当容易地触发该事件,就会返回 true。

关于c# - 支持更多日期/时间触发器的调度引擎,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12325048/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com