C++ only: what is the way to extract the needed error code and the corresponding error string from the GRPC library when the <ClientWriter> Write() call fails?
The <ClientWriter> Write() call returns a useless Boolean True/False value.
That Write() call fails - how can the error code, the corresponding error string and the overall Status of the respective Server-side call be retrieved (if, say, it is known that the Server-side code that participates in this Client streaming call fails)?
Thank you in advance.