我正在尝试将Hangfire评估为我最新项目的潜在任务调度解决方案。
在处理周期性任务时,我注意到当我尝试用控制台编写当前时间时,每次都将相同的时间写入控制台。
有人可以告诉我如何在每次运行时强制执行hangfire重新执行任务吗? Google没有帮助,可能是因为我在寻找合适的单词进行搜索时遇到了麻烦。
这种“更新系统信息”任务将毫无用处。
我的代码:
using System;
using System.Globalization;
using Hangfire;
using Microsoft.Owin.Hosting;
namespace HangfireTests
{
public class HangfireTests
{
public HangfireTests()
{
}
public void Start()
{
WebApp.Start<Startup>("http://localhost:8888");
Console.WriteLine("Server started... press any key to shut down");
RecurringJob.AddOrUpdate("systeminfo",
() => Console.WriteLine($"updating system information {GetTime()}"), Cron.Minutely);
RecurringJob.AddOrUpdate("checktask",
() => Console.WriteLine($"checking tasks {GetTime()}"), Cron.Minutely);
}
public static string GetTime()
{
return DateTime.Now.ToString(CultureInfo.InvariantCulture);
}
public void Stop()
{
}
}
}
答案 0 :(得分:0)
如果将GetTime函数而不是WriteLine排队,它将在执行时进行评估。这将为您提供执行作业的时间。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<FrameLayout
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/bottom_navigation"/>
<android.support.design.widget.BottomNavigationView
android:id="@+id/bottom_navigation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
app:menu="@menu/bottom_nav_menu"
app:labelVisibilityMode="unlabeled"
app:itemBackground="@color/colorPrimary"
app:itemIconTint="@color/bottom_nav_color"
app:itemTextColor="@color/bottom_nav_color" />
</RelativeLayout>