Auto refresh grid vaadin8 framework

Hello
I have a grid in my vaadin8 framework application. I need to be refreshed every 3 or 5 second, so it show the updated data.

Is there any quick solution for achieve it ?

Thanks

You can use either Push or Polling. Here’s the docs for Push: https://vaadin.com/docs/v8/framework/advanced/advanced-push.html
and you can read about Polling here: https://vaadin.com/docs/v8/framework/articles/UsingPolling.html

Solved using polling! thanks!