I am using multiple threads in python.
One thread will run exactly after 1 minute frequency. Another will run after every 2 minutes. one more will run after 10 minutes.
first one and second one will suppose to start together every 2 minutes. But I want one of them to run first.
similarly at every 10 minutes all of them will run simultaneously together. But I am looking for 1th one to start first , 2nd one to start second and 3rd one to start last at the frequency of every 10 minutes.
so is it possible to have thread priority in case of multiple threads ?