Is it possible to only stream to certain clients from a gRPC server?
I believe what I'm looking for is something like Pusher, where you have a channel for a client and you can publish messages that can be seen only by a client that has access to that channel.
What I'm struggling with is understanding what are the steps we need to take to do something like this.
Thinking about web-sockets I believe we can store each client connection, then we can find that connection and send messages. How can we do a similar thing with gRPC
?