标签: java multithreading timer
如何让我的计时器等到内部进程完成?这是我的代码
System.Threading.Timer mTimer = new System.Threading.Timer((o) => { //Do anything here },null,0,5000);
我希望我的计时器等待内部进程直到完成。我怎么能这样做?
谢谢!