Benny
Benny

Reputation: 8815

Can a subscriber also publish/send message in NServiceBus?

Is the communication bi-directional in NServiceBus?

a subscriber can also publish/send message?

Upvotes: 2

Views: 1151

Answers (1)

Udi Dahan
Udi Dahan

Reputation: 12057

NServiceBus does indeed support bi-directional communication, a subscriber can publish messages as well. Configure it as a publisher as per-usual, write handlers for events coming from other publishers, configure the messages in the UnicastBusConfig, and you're done.

Upvotes: 2

Related Questions