timer
基本用法
在视图 XML 的 facets
元素中添加 timer
:
<facets>
<timer id="timer" delay="3000" autostart="true" repeating="true"/>
</facets>
创建 TimerActionEvent
事件的处理方法:
@Autowired
private Notifications notifications;
@Subscribe("timer")
public void onTimerTimerAction(final Timer.TimerActionEvent event) {
notifications.show("Timer action");
}
视图打开后,每隔 3 秒就会调用一次处理方法。
事件和处理器
本页是否有帮助?
感谢您的反馈