我需要一些代码来监视程序何时启动和停止,异步。
我可以使用VB.NET或C#Code。感谢。
答案 0 :(得分:2)
这是进行实际监控的方法。对于动态配置文件,产生这些监视器线程的主线程可以使用FileSystemWatcher
,http://msdn.microsoft.com/en-us/library/system.io.filesystemwatcher.aspx来监视具有进程名称的xml /文本文件。您可以将取消令牌传递到函数中,并在每次迭代时检查令牌是否被取消。
static Task MonitorProcessAsync(string process, Action<string> startAction, Action<string> exitAction)
{
return Task.Factory.StartNew(() =>
{
bool isProcessRunning = false;
while (true)
{
int count = Process.GetProcessesByName(process).Count();
if (count > 0 && !isProcessRunning)
{
startAction(process);
isProcessRunning = true;
}
else if (count == 0 && isProcessRunng)
{
exitAction(process);
isProcessRunning = false;
}
Thread.Sleep(1000);
}
});
}
实施例
Action<string> startAction = (process) => Console.WriteLine(process + " Started!");
Action<string> exitAction = (process) => Console.WriteLine(process + " Stopped!");
MonitorProcessAsync("notepad.exe", startAction, exitAction);