I’m new to concurrent programming. I’d like to execute three tasks repeatedly. The first two should run all the time, the third should run every hour or so. The first two tasks can run in parallel, but I always want to pause them while the third task is running. Here’s the skeleton of what I’ve tried: I would expect this