Replies: 1 comment
-
I just found the HideCompleted() method. Closing. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello!
I have over 1000 tasks that need to be run on an ongoing basis - once every couple weeks.
I have created a console application to perform these tasks and would now like to integrate Spectre.Console to make it easier to look at.
The idea I am looking to implement would be that at any one time 10 tasks are allowed to run. As one task completes it triggers the next in the queue to run. I would prefer that the completed tasks are removed from the display. Only the 10 currently running tasks should be visible.
I've analyzed the ProgressTask sample in the repo. It appears that once a task is added to the context it can not be removed. Is that correct? I only see AddTask* functions on the context, no remove functions.
Any ideas how to implement what I have described?
Beta Was this translation helpful? Give feedback.
All reactions