When I send a message to a signalR group that I am subscribed to, I get the message back!
I do not want this, I want it to send the message to everyone else in the group.
Is this possible? How?
|
When I send a message to a signalR group that I am subscribed to, I get the message back! I do not want this, I want it to send the message to everyone else in the group. Is this possible? How? |
||||
|
|
|
Now with SignalR you are able to use
which does exactly what you're after. It will send a SignalR client message to everyone in a group except the caller. You can read more here: SignalR wiki Hubs |
|||
|
|
|
What you can do here is that you can send the ConnectionId to the client and inspect that. For example, the below one is your hub:
At the client level, you can do the following:
Edit Starting from SignalR 1.0.0-alpha, there is a built-in API for that if you are using Hubs:
This will broadcast the data everybody but the Caller. |
|||||||
|