vespa中的TimerTask在Searcher中不起作用

时间:2018-10-17 11:44:54

标签: vespa

我想每30秒发送一次通知。我已经使用TimerTask安排了任务,但无法正常工作。为什么会这样呢?我的搜索器如下:

@Override
public Result search(Query query, Execution execution) {

    // pass it down the chain to get a result
    Result result = execution.search(query);
    execution.fill(result);

    //the Date and time at which you want to execute
    DateFormat dateFormatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
    Date date = null;
    try {
        date = dateFormatter.parse("2018-10-17 16:20:00");
    } catch (ParseException e) {
        e.printStackTrace();
    }

    //Now create the time and schedule it
    Timer timer = new Timer();

    assert date != null;
    timer.schedule(new TimerTask() {
        @Override
        public void run() {
            sendNotification();
        }
    }, date, 30000);


    // return the result up the chain
    return result;
}

1 个答案:

答案 0 :(得分:0)

在每个请求的基础上调用search()方法,并且您正在为每个请求创建一个新的Timer实例,该Java实例将在搜索方法返回后的某个时间被Java VM垃圾回收,因为没有引用。