gpt4 book ai didi

Hangfire 类中的调用方法

转载 作者:行者123 更新时间:2023-12-02 22:10:29 31 4
gpt4 key购买 nike

我想将 QUARTZ 作业转换为 hangfire

我有一个带有 Execute 方法的类。

如何在Hangfire中调用该方法。我尝试类似的事情

public static string CRON_EXP = "0 30 1 ? * *";
RecurringJob.AddOrUpdate("CheckStudentAgeJob", () => CheckStudentAgeJob(), CRON_EXP);

类(class)是

public class CheckStudentAgeJob {
public void Execute()
{
//...
}
}

但语法不正确。我怎样才能做到这一点?

最佳答案

您正在尝试调用类而不是方法。应该是:

public static string CRON_EXP = "0 30 1 ? * *";
RecurringJob.AddOrUpdate("CheckStudentAgeJob",
() => new CheckStudentAgeJob().Execute(), CRON_EXP);

关于Hangfire 类中的调用方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41943247/

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