C# 中的任务计划程序
我想像任务调度程序 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
查看System.Threading.Timer。
这允许您指定在给定时间调用的委托。
Have a look at System.Threading.Timer.
This allows you to specify a delegate to be invoked at a given time.
快速而肮脏的解决方案是检查时间和日期(比如每分钟)。它不会占用太多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.
我最终推出了自己的调度 API,非常类似于任务调度,它将调度线程而不是进程
i ended up pushing my own scheduling api very much like task schedular that will schedule threads not processes