Programming for failure – asynchronous code
When writing asynchronous code, if you haven’t built your program to handle failure, then often, it may appear that the failure never even happened. Exception handling in asynchronous code is very different than in sequential code, because the failure has to be “woven” into the code itself. Let’s take a closer look at this!
Continue reading >