Category: RabbitMQ

  • Using RabbitMQ in ASP.NET Core 6.0

    Continuing from my last post, here, let’s add the ability for an ASP.NET endpoint to queue a message to RabbitMQ. The source code can be found on Github here, please use that as a reference. First thing to do is to add an ASP.NET Core project to the solution. Right-click on the solution and select…

  • Using RabbitMQ in C#

    Often, when dealing with software, there are tasks which take long to compute. As such, you wouldn’t want to compute this directly in an API, but use other methods to calculate it and return it to the user at a later time. (Think generating a report, or dealing with large amounts of data.) Simply put,…