What they're not telling you about the MediatR Publisher
Summary
The main theme is optimizing async processing with publisher-subscriber patterns in tech. The discussion highlights how default forEach await publishers block until handlers execute and that Task.WhenAll improves concurrency but doesn't achieve true async processing. The practical takeaway is that true async processing requires building a custom publisher.