Whilst on the flight from London to WWDC yesterday, I re-watched the excellent Advanced NSOperations session from 2015 by Dave DeLong. Suitably inspired, I wrote a very simple promisey type extension to Operation that implements a then function to create a dependency tree of operations to be executed. Problem is that as operations run in their own threads, I was now starting the Timer inside an operation and it was no longer firing as expected. It’s taken me a while (jetlag) to figure this out but you have to remember that the timer will not get scheduled once the operation has completed. So you have to explicitly tell it which loop to schedule on using RunLoop.main.add(timer, forMode: .common). As a side note: whenever you start going down the path of callback-hell, promises, futures, or Rx (*shivers*), have a watch of Dave DeLong’s session first.