0

我使用附加的代码每 5 分钟向我的数据库发送一些信息,其中一些信息是时间戳。当我查看我的数据库时,我看到有 6 分钟差异甚至 7 分钟的记录,怎么会?有人告诉我,我的任务耗时太长。

无论如何,我的问题是如何强制我的代码每 5 分钟将信息发送到数据库。

*重要的是我不得不说我对任务有一个条件,这意味着有时它不会做任何事情,所以记录之间的差异应该是五的倍数。

this.timer.schedule(new Send(), new Date(), TEN_SECONDS*6*5);

class Send extends TimerTask
{
    public void run()
    {
        if(location!=null)
        {
            if (mGeocoderAvailable) 
                address = reverseGeocode(LocationService.this.location);
            if(address != "" && !address.equals(lastAddress))
            {
                lastAddress = address;
                new SendLocation(LocationService.this.id,address);
            }
        }
    }
}

SendLocation 正文是这样的:

public SendLocation(int id,String address)
{
    // taking care the parameters
    this.start();
}
public void run() 
{ 
    //connect to db
    //send location to db
    this.destroy();
}
4

1 回答 1

0

时间是在 SendLocation 线程中安排的,而不是从 Send 任务中安排的。

于 2013-01-25T15:47:29.610 回答