Re: [grpc-io] Build a grpc c++ client for receiving response from streaming server

2018-09-01 Thread Mahesh Kanote
If possible can you please share sudo code of java server? Also, is it grpc client to grpc server call or is there any proxy in between? On Fri, 31 Aug 2018, 22:55 Prashant Shubham, wrote: > I am trying to build a `grpc` `rpc` which has stream on server side. > The proto is like > > rpc xyz

[grpc-io] Build a grpc c++ client for receiving response from streaming server

2018-08-31 Thread Prashant Shubham
I am trying to build a `grpc` `rpc` which has stream on server side. The proto is like rpc xyz (abc) return (stream asd){} How to build a C++ client to keep listening on the stream even after the `rpc` returns response once. std::unique_ptr> reader(stub_->xyz(&context, request));