C# 自己写了一个windows服务程序,运行时错误: 错误 1053: 服务没有及时响应启动或控制请求。
OnStart里面要放一个运行时间很短的方法,能够成功启动该服务,当OnStart里面放一个运行时间很长的方法(比如超过2小时的方法)时就出现上面那个错误,1、请高手给个...
OnStart里面要放一个运行时间很短的方法,能够成功启动该服务,当OnStart里面放一个运行时间很长的方法(比如超过2小时的方法)时就出现上面那个错误,
1、请高手给个编写服务的教程或源码
2、怎样才能在服务里面运行很费时间的方法, 展开
1、请高手给个编写服务的教程或源码
2、怎样才能在服务里面运行很费时间的方法, 展开
展开全部
你可能需要在onStart()方法里另起一个线程,在这个线程里可以while(true).
protected override void OnStart(string[] args)
{
// TODO: Add code here to start your service.
if (threadforwork == null)
{
threadforwork = new Thread(workFunction);
}
threadforwork.IsBackground = true;
threadforwork.Start();
}
在onStop()里面将线程杀掉
protected override void OnStop()
{
// TODO: Add code here to perform any tear-down necessary to stop yourservice.
if (threadforwork != null)
{
if (threadforwork.ThreadState == System.Threading.ThreadState.Running)
{
threadforwork.Abort();
}
}
}
protected override void OnStart(string[] args)
{
// TODO: Add code here to start your service.
if (threadforwork == null)
{
threadforwork = new Thread(workFunction);
}
threadforwork.IsBackground = true;
threadforwork.Start();
}
在onStop()里面将线程杀掉
protected override void OnStop()
{
// TODO: Add code here to perform any tear-down necessary to stop yourservice.
if (threadforwork != null)
{
if (threadforwork.ThreadState == System.Threading.ThreadState.Running)
{
threadforwork.Abort();
}
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询