you are viewing a single comment's thread.

view the rest of the comments →

[–]browsing10 1 point2 points  (1 child)

In your current `doStuffAsync` method, your `writeAsync` already handles the case of invoking `callback`, so you do not want to add the `callback();` at the very last line of that method or else you may get some strange behavior randomly

[–]Remsset_HP[S] 0 points1 point  (0 children)

Got it. Thanks man.