nop 中创建任务(Task)
Posted hpbkin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nop 中创建任务(Task)相关的知识,希望对你有一定的参考价值。
NopCommerce 中Task 原理是服务端开启线程定时跑。
1.在数据表ScheduleTask中添加一条数据,
2.自定义类,继承ITask 即可
using Data.Log4Net; using Data.Services.Tasks; using System; using System.Net; using System.Security.Policy; using System.Web; namespace Data.Services.Common { /// <summary> /// Represents a task for keeping the site alive /// </summary> public partial class KeepAliveTask : ITask { //private readonly IStoreContext _storeContext; //public KeepAliveTask(IStoreContext storeContext) //{ // this._storeContext = storeContext; //} /// <summary> /// Executes a task /// </summary> public void Execute() { //WriteLog.Info("KeepAliveTask,Execute"); string domainUrl = System.Configuration.ConfigurationManager.AppSettings["domainUrl"]; string url = domainUrl + "/keepalive/index";//"http://localhost:8060/keepalive/index"; WriteLog.Info("KeepAliveTask,url=" + url); using (var wc = new WebClient()) { var down = wc.DownloadString(url); WriteLog.Info("KeepAliveTask,down=" + down); } } } }
OK,服务端会每隔60秒 跑 Execute()方法。
以上是关于nop 中创建任务(Task)的主要内容,如果未能解决你的问题,请参考以下文章
在 firebase 函数中创建 Google Cloud Task
我可以在 Google People API 和 Task API 中创建扩展属性吗?
Android Gradle 插件Gradle 自定义 Plugin 插件 ⑤ ( 自定义插件中获定义方法 | 在插件中创建 Gradle 任务 | 代码示例 )