我有一个球衣服务,其中包含一个计时器任务,它轮询特定值。只有当我从轮询中获得特定值时,我才想返回响应。有什么办法可以做到吗?
我的代码是:
@Path("/poll")
public class PollService{
String response = null;
@GET
@Produces(javax.ws.rs.core.MediaType.TEXT_PLAIN)
public String pollResponse(@Context HttpServletRequest request){
MyTimer poller = new MyTimer();
final Timer timer = new Timer();
timer.scheduleAtFixedRate(poller, 0, 5000);
return response;
}
private class MyTimer extends TimerTask{
@Override
public void run(){
//Poll
//Change value of response upon condition
}
}
在“响应”变量的值设置为“成功”之前,我不希望服务返回任何值。我该怎么做才能做到这一点?