I was wondering how in Python I can start a function that is dependant on two different functions completing that are running in their own threads?
So for example:
Thread 1 is running
Thread 4 is running
When thread 1 finishes, but thread 4 has not finished
then wait
When thread 4 finishes, but thread 1 has not finished
then wait
If both thread 1 and 4 finished,
run this.