mdevilliers / SignalR.RabbitMq

MessageBus implementation using RabbitMq as the backing store.
MIT License
89 stars 40 forks source link

Exchange and queue naming changes, using fanout #6

Closed kevingorski closed 11 years ago

kevingorski commented 11 years ago

For my uses it's necessary to name the exchange and queues to follow an internal naming standard, so I changed the applicationName parameter to be the exact exchange name instead and added an optional queueName parameter.

I also switched the exchange type to fanout, which ignores routing keys and delivers messages to all bound queues, which I think is what is intended here.

mdevilliers commented 11 years ago

Cool, nicely done.