The curse of the never-ending async method call

added by Robert Greyling
1/8/2015 8:40:37 PM

137 Views

Whether you use promises, callbacks, or other abstractions (except maybe the async/await pattern) to deal with asynchrony, control flow is going to get harder to follow. Stack traces are typically meaningless, and finding what went wrong can take substantially more time. One thing that very often goes wrong, especially during development, is when an asynchronous method never calls back.


0 comments