C#中的任务管理算法
我正在寻找 C# 的高效任务管理,
我所说的任务管理是执行预定义的任务间隔时间。
例子: 任务a需要每1分钟运行一次 任务b需要每3分钟运行一次 任务 c 需要每 5 分钟运行一次,
这些任务可以在任意时间添加和删除...
并且我提到的任务可以是 100000 或更多... 该任务将永远执行,直到被删除...
大家熟悉这种算法吗?我正在考虑用 c# 或 php 实现......
谢谢
i am looking for efficient task management fo C#
what i mean by task management is executing pre-defined interval time of task.
Example:
task a needs to be run every 1 mins
task b needs to be run every 3 mins
task c needs to be run every 5 mins
these tasks can be added and removed in arbitary time...
And the task that i mentioned can be 100000 or more...
The task will be executed forever until it is removed...
Do u guys familiar with this kind of algorithm? I am thinking to implement in either c# or php....
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议使用开源的 Quartz.Net 因为它可以完成你想要的一切。确实没有充分的理由为这样的事情自己动手。
I would suggest using the open-source Quartz.Net as it does everything you want. There is really no good reason to roll your own for something like this.