Hi all,

As an update to a service we had, the signature of an RPC changed, from a 
non-streamed to a server side streaming RPC like so:

rpc StartProcess(ProcessData) returns (VoidMessage); // Version 1

and now it is:

rpc StartProcess(ProcessData) returns (stream Progress); // Version 2

Is there a way I can on the client side (C++ btw) check to see which 
signature of the RPC that the server implements ? I imagine that
if I call the RPC with the wrong signature, I would get a 
grpc::StatusCode::UNIMPLEMENTED ?

Regards
/Robert

-- 
You received this message because you are subscribed to the Google Groups 
"grpc.io" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to grpc-io+unsubscr...@googlegroups.com.
To post to this group, send email to grpc-io@googlegroups.com.
Visit this group at https://groups.google.com/group/grpc-io.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/grpc-io/5631e87a-0d17-4635-9399-ac36858c1b2f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to