Is there have any method eg setTimeOut that make @Push response time more b

Is there have any method eg setTimeOut that make @Push response time more bigger?

No, but you can switch PushMode to MANUAL in the Push configuration (@Push() annotation or web.xml configuration) and use UI.push() to push changes when you’re ready.

-Olli

Olli Tietäväinen:
No, but you can switch PushMode to MANUAL in the Push configuration (@Push() annotation or web.xml configuration) and use UI.push() to push changes when you’re ready.

-Olli

So,That means is When I input the url in the browser to visit the vaadin UI,the view can be push to browser only after I use the push() method ,right? otherwise the UI view can not be seem.

Whenever you update the UI outside of the normal request thread, and you have PushMode.MANUAL, you need to call ui.push() (or wait until the next request) to get the changes to the browser .