gpt4 book ai didi

java - 如何在vaadin中使用PollListener?

转载 作者:行者123 更新时间:2023-11-29 06:34:23 26 4
gpt4 key购买 nike

我正在尝试在 vaadin 中使用 PollListener,代码如下:

@VaadinUI
@PreserveOnRefresh
public class ApplicationUI extends UI {
@Override
protected void init(VaadinRequest request) {
setPollInterval(1000);
access(new Runnable() {
@Override
public void run() {
System.out.println("TEST POLL: " + counter++); //is only printed a single time
}
});
}
}

当我打开我的应用程序时,输出“TEST POLL 0”被打印了一次。但仅此而已。我可能错过了什么?

最佳答案

您无需执行任何操作,polling example特别指出:

By doing this the browser will poll the server each "timeout" ms and retrieve any possibly pending changes

因此,无论您在应用程序中做了什么,都会在下一次轮询发生时在客户端浏览器上更新。在示例中,您应该会看到该标签在 UI 加载 5 秒后显示,没有任何特殊的用户交互。

但是,如果您需要对每个这样的请求执行一些代码,那么您可以添加一个pollingListener

@Override
protected void init(VaadinRequest request) {
setPollInterval(1000);
addPollListener(new UIEvents.PollListener() {
@Override
public void poll(UIEvents.PollEvent event) {
log.debug("Polling");
}
});
}

关于java - 如何在vaadin中使用PollListener?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24363588/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com