View auto navigation loop

Hi everyone!

I’m developing an application to show data in some charts to be visualized in a TV browser. The current view should navigate to the next view every 10 seconds. It’s look like a Power Point presentation.
My question is: How to create a loop to navigate automatically between the charts/views without client/user interaction?

Thanks.

You can try server initiated events:
https://vaadin.com/wiki?p_p_id=36&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&p_p_col_id=row-1&p_p_col_pos=1&p_p_col_count=3&_36_struts_action=%2Fwiki%2Fview&p_r_p_185834411_nodeName=vaadin.com+wiki&p_r_p_185834411_title=Using+server+initiated+events

using server push
https://vaadin.com/book/-/page/advanced.push.html
or polling
https://vaadin.com/wiki?p_p_id=36&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&p_p_col_id=row-1&p_p_col_pos=1&p_p_col_count=3&_36_struts_action=%2Fwiki%2Fview&p_r_p_185834411_nodeName=vaadin.com+wiki&p_r_p_185834411_title=Using+polling

Thank you, it was very helpful.