0

If an Elmish app were to receive updates faster than it can render the view, will it queue each update and resulting model change and try to render them one by one, or will it accumulate the resulting model and only render it whenever it gets a gap?

Chechy Levas
  • 2,206
  • 1
  • 13
  • 28

1 Answers1

0

What would you do if you would implement an elmish app? It depends on the point of bottleneck, but it would certainly be a good idea to wait with visualisation until the model is computed until the latest delta.

citykid
  • 9,916
  • 10
  • 55
  • 91