Here's the structure of my program:
def bunchOfFoos()
...
...
def mainFoo():
#calls a bunch of functions
def monitorDisconnect():
#this function should run in parallel with mainFoo() and monitor for any disconnect. If a disconnect is detected, it'll call mainFoo() again
def bunchOfOtherMonitors():
#functions monitoring for other things in parallel
How can I accomplish this?
Depending on the structure of your program, you might want to try something like this:
You can also accomplish something very similar if you use the higher level
threading
module instead: