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
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));