如何在执行之间“暂停”一个方法,并在外部触发它以继续执行此方法?
Thread是一个servlet,点击按钮启动executeAndWait
方法。
现在我想对SessionScoped
变量进行轮询。
如果此变量更改其状态(例如,为true),则轮询/等待方法应继续。
我首先考虑的是Observer
模式。但有了这个,我就可以触发方法的执行。但是我需要睡眠/等待并触发方法的 continue 。
除了轮询到“全局”变量之外,还能做些什么。?
class MyThread {
@Inject
MyBean bean;
doExecuteAndWait() {
//this waits for the var to turn into "true" state
while(!bean.isVarValid()) {
Thread.sleep(1000);
}
//continue execution if somevar is set to true externally
}
}
class MySignal {
@Inject
MyBean bean;
//this triggers the continuation of the method from class above
toggleVar() {
bean.setVarValid(true);
}
}
@SessionScoped
class MyBean() {
varValid = false;
isVarValid() {
return varValid;
}
setVarValid(Boolean status) {
this.varValid = status;
}
}
答案 0 :(得分:0)