设计 Qn RE:系统范围定时器 (C#)。什么定时器在哪一层?
感谢您花时间阅读这个问题。
我正在设计一个用 C# 编写的 3 层解决方案,需要每分钟执行一次处理。处理应该从程序的不同未连接部分同时启动。
实现系统范围计时器的最佳方法是什么?应该在业务逻辑层还是UI层? 哪种计时器最好,例如来自 System.Forms 或来自 System.Threading 的计时器?对于这种情况有经验法则吗?
非常感谢
Thanks for taking time to read this question.
I am designing a 3-tier solution written in c# that needs to carry out processing every minute. The processing should be initiated at the same time from different unconnected parts of the program.
What's the best way to implement a system-wide timer? Should it be in the business logic layer or UI layer?
What kind of timer is best, e.g. one from System.Forms of from System.Threading, or? Is there a rule of thumb for this situation?
Many thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想说的是,在您的业务层中有一个静态或单例类公开一个事件,该事件可以被应用程序中的其他人订阅。
我会使用 System.Threading.Timer,它使用自己的线程。
相反,System.Windows.Forms 应该在控件内部使用(我认为在 UI 线程中运行)。
I would say have a static or singleton class in your business layer expose an event, that can be subscribed to by everyone else in the application.
I would use System.Threading.Timer, which uses its own thread.
System.Windows.Forms, conversely, is meant to be used inside a control (and I think runs in the UI thread).