So the threading
module has a Timer
class inhereted from Thread
class to repeatedly execute some tasks.
I was wondering why doesn't the multiprocessing module have something like an analogous TimedProcess
class for e.g., which is inhereted from Process
to repeatedly execute some tasks?
It is possible to write such a timed process and I have written one but still curious. Or am I missing something?
See Question&Answers more detail:os