I am trying to set up the GRPC + WebRtc code in my local from this GitHub project
https://github.com/jsmouret/grpc-over-webrtc
In echo.tsx I am trying to set up the client Streaming model of gRPC.
The signature of gRPC generated client is -
clientStreamingEcho(metadata?: grpc.Metadata): RequestStream<echo_echo_pb.ClientStreamingEchoRequest>;
If you see ,the method needs a Request Stream of ClientStreamingEchoRequest objects.
If I have an array of these objects in my TypeScript code then How will I create RequestStream from that array and send to this function?
Thanks in advance.
Manoj
question from:
https://stackoverflow.com/questions/65902635/how-to-send-stream-of-objects-in-typescript 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…