Python equivalent of Java Timer java.util.Timer -
java se has scalable timer object that, using 1 single thread, allows large numbers of concurrently scheduled tasks (thousands should present no problem). internally uses binary heap represent task queue.
is there python equivalent? standard or in popular library preferable.
Comments
Post a Comment