This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
using Estsh.Core.Quartz.BaseService;
using Estsh.Core.Util;
using Quartz;
namespace Estsh.Core.Web.Jobs
{
public class QuartzUIJobDemo : IJobService
public string ExecuteService(string parameter)
LogHelper.Info("QuartzUIJobDemo执行成功:" + Thread.GetCurrentProcessorId().ToString() + "::" + DateTime.Now);
Thread.Sleep(25000);
return "QuartzUIJobDemo测试执行成功!!!"
+ Thread.GetCurrentProcessorId().ToString()
+ ":::" + Thread.CurrentThread.ManagedThreadId;
}