I have a server side streaming RPC, that might return an error directly, like UNIMPLEMENTED or RESOURCE_EXHAUSTED, or work as expected
at which point the client will hang on the reader->Read(...) method.
In the case of UNIMPLEMENTED, I can see that the call to the server is made when client gets a reader:
auto reader = service->Notifications(client_context, ...);
so it *should* be possible to get hold of that return value without calling the reader->Read(...) method ? But I cannot see how?
Regards
/Robert