You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When there are nested progressors, only the first one is listened to. Any progress conditions signaled by nested progressors are ignored. Here's an example of nested progressors:
However, we could make use of those conditions by doing an amount=0 update, i.e. to communicate "still alive", which may for instance update a "spinner".
The code that drops/ignore nested progressors is in:
When there are nested progressors, only the first one is listened to. Any progress conditions signaled by nested progressors are ignored. Here's an example of nested progressors:
Calling
will only report on
bar()
updates.However, we could make use of those conditions by doing an
amount=0
update, i.e. to communicate "still alive", which may for instance update a "spinner".The code that drops/ignore nested progressors is in:
https://github.com/HenrikBengtsson/progressr/blob/a2cb9af430784fd46f89022d467755fff2b73d76/R/make_progression_handler.R#L318-L323
The text was updated successfully, but these errors were encountered: