Questions tagged [easynetq]

EasyNetQ is a simple to use, opinionated, .NET API for RabbitMQ.

[EasyNetQ] (easynetq.com) is the leading client API for RabbitMQ on .NET, with over 100,000 downloads on NuGet.org. It is an open source project originally sponsored by 15below the travel industry experts.

QuickStart can be found here

Documentation can be found here

183 questions
0
votes
1 answer

Deleting a FuturePublished Message

If I use FuturePublish() to schedule a message for future execution, is there anything in the EasyNetQ API to allow me to delete the message whilst it's sat dehydrated in the scheduler's SQL database?
Adrian Thompson Phillips
  • 6,893
  • 6
  • 38
  • 69
0
votes
1 answer

RabbitMq EasyNetQ Create message using Activator.CreateInstance

I have an issue I don't fully understand. When I create message this way it works: var message = new StartFakeJobCommand(); using (var publishChannel = ApplicationSingleton.Instance.RabbitBus.OpenPublishChannel()) { …
Felix
  • 3,246
  • 4
  • 23
  • 25
-1
votes
3 answers

I need an example of how to Broadcast same message to multiple receivers using EasyNetQ library

I am trying to use EasyNetQ to send and receive messages from RabbitMQ, I need to send same message to multiple receivers or whom ever is connected at the time. I have tried publish-subscribe messaging pattern and it works fine, but it's more like…
Peter
  • 19
  • 2
  • 6
1 2 3
12
13