Sorry if my question is dumb, I'm new to MassTransit.
My system consists of a server and multiple client devices.
I'd like to send a message from the server to a specific client or to a group of clients.
As far as I understand, IBusControl.Publish
sends the message to all subscribers, and IBusControl.Send
to the only one subscriber.
How can I achieve this using MassTransit? My transports are RabbitMQ / Azure Service Bus.
Thanks!