General question on timer-manager and stopwatch
I have seen both of them so far and well i can see that, both are quite good at performance however i am not sure what to use, should i use timer manager to manage timers since it also stores them in a hashmap or should i stick to stopwatch and just store those, since my purpose is mainly managing short time durations less than a day at rare cases it can be more than a day. But for that we'll more likely depend on the database to store that.
I would like to get suggestions on what should i use
Solution:Jump to solution
Timer manager for your use case. Stopwatch is meant to only be used to measure how long some task takes, ergo the name.
1 Reply
Solution
Timer manager for your use case. Stopwatch is meant to only be used to measure how long some task takes, ergo the name.