Currently I have controller field that contains Mutable Array full of objects. Each time i add/remove elements in array - template rendering occurs. That is good.
And now i have a situation, where I have to replace whole array.
If I do this via .clear() and then .pushObjects() I see template flickering.
It is pretty noticeable, because Em render empty template at .clear and render template again,
after .pushObjects() call.
I thought, is there any way to pause template rendering while model is updating? In this case should be only one render call, and flickering shouldn't be.
So question is: how to control rendering process in Ember?