Hi,
We have a bi-di streaming service, the server is in gRPC Java.
Many of the server-side ProtoBuf messages are immutable, i.e. can be created once and sent to all client channels. Right now new instance is created and sent to each client.
Is sending the same ProtoBuf message, concurrently, to multiple outbound streams possible and thread-safe thing to do?
Thanks