本文介绍了在特定时间调用方法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在开发一个应用程序,该应用程序具有使用一些外部Web服务发送一些SMS消息和电子邮件的小功能.
I am developing an application that has a small feature of sending some SMS messages and Emails using some external web services.
可以将这些消息安排为现在或将来在特定日期的特定时间发送.还可以将它们安排为每天/每周/每月发送.
These messages can be scheduled to be sent right now or in the future on a certain date at a certain time. They can also be scheduled to be sent every day/week/month.
如何设计我的系统以知道"何时调用发送方法(不轮询)?
How can I design my system to "know" when to call the sending method (without polling)?
推荐答案
您可以将Quartz.net用于任务计划. http://quartznet.sourceforge.net/
You can use Quartz.net for task schedule.http://quartznet.sourceforge.net/
您可以将其与Windows服务一起使用.
You can use this with windows service.
这篇关于在特定时间调用方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!