Difference between FireAndForget and Async behavior for publishing

There’s a main difference comparing fire and forget vs calling an async operation and not awaiting it. Fire and forget means that not only you’re not waiting for the result but you don’t care if it works or not, while an async operation may throw an exception once it has ended if something goes wrong. In the other hand, … Read more