我有一个 Windows 服务,它是我从许多博客和论坛中整合而来的,主要是我在这里提出并回答的问题。该服务工作正常。唯一的问题是当我停止服务时;当我停止它时,向下粘贴的是我在日志文件中看到的内容。
public partial class GBBInvService : ServiceBase
{
private static readonly ILog log = LogManager.GetLogger(typeof(GBBInvService));
System.Timers.Timer timer = new System.Timers.Timer();
private volatile bool _requestStop=false;
private ManualResetEventSlim resetEvent = new ManualResetEventSlim(false);
public GBBInvService()
{
InitializeComponent();
}
protected override void OnStart(string[] args)
{
_requestStop = false;
timer.Elapsed += new ElapsedEventHandler(timer_Elapsed);
timer.Interval = 18000;
timer.Enabled = true;
timer.Start();
log.Info("GBBInvService Service Started");
}
protected override void OnStop()
{
log.Info("inside stop");
if (!_requestStop)
{
log.Info("Stop not requested");
timer.Start();
}
else
{
log.Info("On Stop Called");
WaitUntilProcessCompleted();
}
}
private void timer_Elapsed(object sender, ElapsedEventArgs e)
{
log.Info("Timer elapsed at " + Convert.ToString(e.SignalTime));
InvProcessing();
}
private void InvProcessing()
{
try
{
resetEvent.Reset();
//*Processing here*
}
catch (Exception ex)
{
resetEvent.Set();
log.Error(ex.Message);
}
}
private void WaitUntilProcessCompleted()
{
resetEvent.Wait();
}
}
该服务正常停止并再次正常启动,但我不知道我的代码是否错误,因为日志文件显示:
2013-04-23 14:53:01,062 [6] INFO GBBInvService.GBBInventoryService [(null)] – 内部停止
2013-04-23 14:53:01,062 [6] 信息 GBBInvService.GBBInventoryService [(null)] – 未请求停止
它进入内部(!_requestStop)
而不是else
. 我的代码错了吗?有人可以向我解释为什么它会进入(!_requestStop)
而不是 else 语句。
任何建议都将不胜感激,因为我才刚刚开始亲身体验 Windows 服务和最近的日志记录。