如何在 Telligent 5.5 中创建和运行自定义任务

发布于 2024-09-30 18:41:44 字数 861 浏览 0 评论 0原文

有谁知道有关在 Telligent 5.5 下创建自定义计划任务的任何资源吗?

根据我的阅读,我需要做的就是以下内容:

1.创建一个实现 ITask2 接口的类型

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using Telligent.Tasks;

namespace Project.ScheduledTasks
{
    public class ReminderTask:ITask2
    {
        public void Execute()
        {
            string task = "Please hit the breakpoint here";
        }

        public void Load(System.Xml.XmlNode node)
        {
            throw new NotImplementedException();
        }
    }
}

2.在communityserver.config 中添加任务描述

  <Thread minutes="1">
    <task name="ReminderTask" type="Project.ScheduledTasks.ReminderTask, Project.ScheduledTasks" enabled="true" enableShutDown="false"></task>
  </Thread>

我还需要做其他事情吗?

请帮忙:)。

Does anyone know any resources regarding to the creation of a custom scheduled task under Telligent 5.5 ?

From what I read, all I need to do is the following:

1.Create a type that implements the ITask2 interface

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using Telligent.Tasks;

namespace Project.ScheduledTasks
{
    public class ReminderTask:ITask2
    {
        public void Execute()
        {
            string task = "Please hit the breakpoint here";
        }

        public void Load(System.Xml.XmlNode node)
        {
            throw new NotImplementedException();
        }
    }
}

2.Add the task description in the communityserver.config

  <Thread minutes="1">
    <task name="ReminderTask" type="Project.ScheduledTasks.ReminderTask, Project.ScheduledTasks" enabled="true" enableShutDown="false"></task>
  </Thread>

Do I need to do anything else ?

Please help :).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

吾性傲以野 2024-10-07 18:41:44

是的,这就是您需要做的全部。你有问题吗?

Yes, that is all that you should need to do. Are you having issues?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文