开发者

Need help in creating the scheduling service

开发者 https://www.devze.com 2023-03-07 13:25 出处:网络
I need to create a scheduling service which will poll the database after a specific time interval, pick the required objects and send it to a WCF service to perform the required task.

I need to create a scheduling service which will poll the database after a specific time interval, pick the required objects and send it to a WCF service to perform the required task.

Shall I use the windows worker thread? or is there any other ready to use component that windows / third party provide开发者_JAVA技巧s?


You can use SQL Server Agent for this task.


why don't you create a windows service... and in that run a timer that will fire an even on specific interval... this allows you to run your code at specific interval... without any user interaction..

0

精彩评论

暂无评论...
验证码 换一张
取 消