如何让System.Threading.Timer等到内部进程完成?

时间:2015-04-15 04:40:38

标签: java multithreading timer

如何让我的计时器等到内部进程完成?这是我的代码

System.Threading.Timer mTimer = new System.Threading.Timer((o) =>
{
    //Do anything here

},null,0,5000);

我希望我的计时器等待内部进程直到完成。我怎么能这样做?

谢谢!

0 个答案:

没有答案