Measuring and displaying the current elapsed time of a parallel task with mirai_map and ExtendedTask #262
Replies: 2 comments
-
What I don't understand is that the following snippet without
|
Beta Was this translation helpful? Give feedback.
-
For your ExtendedTask example, it is here: output$result <- renderText({
# result of mirai_map() is a list
Timer.Status(2)
as.character(task$result())
}, sep = "\n") Your Here you effectively want the return value of the |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I want to measure the current elapsed time of a task performed in parallel with the help of
mirai_map
andshiny::ExtendedTask
.Building on the following example code Shiny ExtendedTask: mirai map, I tried to add this timer but it doesn't move beyond 1 second. What did I do wrong?
Beta Was this translation helpful? Give feedback.
All reactions