本文介绍了从自定义计时器作业返回计时器作业状态的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
中央管理中有一个计时器作业状态页面
/_admin/ServiceRunningJobs.aspx
There is a timer job status page in Central Admin
/_admin/ServiceRunningJobs.aspx
如何正确返回自定义计时器作业的状态?
How can I properly return the status for my custom timer job ?
定时器作业的Execute()
方法返回void
.
The Execute()
method of timer job returns void
.
推荐答案
要么失败(Exception)要么成功(Method completes)
It either fails (Exception) or succeeds (Method completes)
这篇关于从自定义计时器作业返回计时器作业状态的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!