Is there a way to use this system for continuous updating the data? ``` Asy

Is there a way to use this system for continuous updating the data?

AsyncManager.getInstance().setPollingIntervals(200);
AsyncManager.getInstance().setPollingContinuous(true);

I guess it’s possible, but Async Manager was specifically designed for non-continuous background tasks: it uses fixed thread pool internally and expect that background thread quit in a reasonable amount of time.

Thanks for your fast feedback! Was looking for a solution for https://vaadin.com/forum/thread/18570717/setting-image-src-continuously-blocks-the-ui and your component seemed to be a possible match…

The background thread does finish in short time, but should be called continuously, e.g. every 1 second to refresh some data on the screen.