C# 中的任务计划程序

发布于 2024-12-10 00:48:44 字数 95 浏览 0 评论 0原文

我想像任务调度程序 2.0 一样调度线程,我无法使用任务调度程序的唯一问题是它是在操作系统级别而不是程序级别注册的。有什么方法可以使用任务调度 API 在程序中调用线程创建吗?

I would like to schedule threads like the Task Scheduler 2.0 only problem that I cannot use task scheduler is that it is registered at os level not the program level. Is there any way to use the task scheduling api to invoke thread creation with in program?

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

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

发布评论

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

评论(3

悲欢浪云 2024-12-17 00:48:44

查看System.Threading.Timer

这允许您指定在给定时间调用的委托。

Have a look at System.Threading.Timer.

This allows you to specify a delegate to be invoked at a given time.

oО清风挽发oО 2024-12-17 00:48:44

快速而肮脏的解决方案是检查时间和日期(比如每分钟)。它不会占用太多CPU资源,但执行时间不会精确到秒。

Quick and dirty solution is to check the time and date (say every minute). It will not take much CPU resources but the execution time will not be accurate to a second.

南笙 2024-12-17 00:48:44

我最终推出了自己的调度 API,非常类似于任务调度,它将调度线程而不是进程

i ended up pushing my own scheduling api very much like task schedular that will schedule threads not processes

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