There are three clients (A, B, C).
I need A to push a message that only B responds to.
channel.push("call", { "device_id": clientBdeviceId });
Is there a scalable way to only send a message to B and not to all clients?
There are three clients (A, B, C).
I need A to push a message that only B responds to.
channel.push("call", { "device_id": clientBdeviceId });
Is there a scalable way to only send a message to B and not to all clients?