I have a function that takes a couple of hours to run. It operates over a for loop and I have a progress meter assigned to it. In the for loop I call another function, that takes about 10 minutes to run. I have a progress meter for that function as well, enabled via a keyword. I was hoping to have the scenario where the inner function's progress meter is also displayed, and when the function terminates then the progress meter is cleaned and restarts, without affecting the higher level slower progress meter. Unfortunately I have not been able to achieve anything like that so far.
Is it possible? Any examples in the wild where this has been achieved?
I have a function that takes a couple of hours to run. It operates over a
forloop and I have a progress meter assigned to it. In theforloop I call another function, that takes about 10 minutes to run. I have a progress meter for that function as well, enabled via a keyword. I was hoping to have the scenario where the inner function's progress meter is also displayed, and when the function terminates then the progress meter is cleaned and restarts, without affecting the higher level slower progress meter. Unfortunately I have not been able to achieve anything like that so far.Is it possible? Any examples in the wild where this has been achieved?