我需要每隔五秒运行一次异步任务直到两分钟。有没有办法做到这一点?
问问题
53 次
1 回答
2
像这样尝试
void TimerTask(int count)
{
if(count>8) // 8 cyclses,because 60*2/15
return;
Timer myTimer = new Timer(); // Create timer
myTimer.schedule(new TimerTask() {
@Override
public void run() {
// run your async task there
TimerTask(count++); //OnExecute
}
}, 0L, 15L * 1000);//every 15 sec (0L - seconds waiting for start)
}
` 调用它 - TimerTask(0);
于 2016-07-22T06:26:49.077 回答