I understand in a client-server model gRPC can do a bidirectional streaming of data. I have not tried yet, but want to know will it be possible to stream audio
Suppose I define the following gRPC service: service Library { rpc Search(SearchBookRequest) returns (stream SearchBookResponse) {} } message SearchBookReq
We have a system where clients open bi-directional grpc stream to ALB, which proxies to one of active server. So