What is the best practice for asynchronously loading component data?

I guess that’s when it’s busy with round trips, each checking its own background task. With a stack you would have only one round trip per second. It would be slightly slower, but the app would not hang.

But for simple cases where you have the freedom to abuse the resources, the component with its own timer is the most elegant solution.

1 Like