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
I feel like the ThrowingTask and the CountingTask should be removed, and only the StoppingTask should be kept. The Counting task is an unnecessary level of inheritance between Task and StoppingTask, and the ThrowingTask isn't used in any project, I doubt there's an actual use case for it.
My suggestion is, we keep only the StoppingTask and just name it Task. No inheritance needed.
What do you think?
The text was updated successfully, but these errors were encountered:
I have also never used any other than StoppingTask, so from the application standpoint I don't think it's needed. But maybe there are some advantages of having those tasks for benchmarking different algorithms? @firefly-cpp what is your point of view on this?
I feel like the
ThrowingTask
and theCountingTask
should be removed, and only theStoppingTask
should be kept. The Counting task is an unnecessary level of inheritance betweenTask
andStoppingTask
, and the ThrowingTask isn't used in any project, I doubt there's an actual use case for it.My suggestion is, we keep only the StoppingTask and just name it Task. No inheritance needed.
What do you think?
The text was updated successfully, but these errors were encountered: