user783244
user783244

Reputation: 111

Publisher/Subscriber architecture with MassTransit

Where can I find a working example of a publisher/subscriber setup using MassTransit ?

Upvotes: 2

Views: 2287

Answers (1)

Travis
Travis

Reputation: 10547

What you need is the Grid.Distributor sample.

https://github.com/MassTransit/MassTransit/tree/develop/src/Samples/Distributor

If you are using RabbitMQ instead of MSMQ, it is possible to use competing consumers. We don't recommend that with MSMQ though. If you want to try, it must be with transactional queues.

If you have more questions, feel free to reach out on the mailing list. http://groups.google.com/group/masstransit-discuss

Upvotes: 3

Related Questions