[grpc-io] Re: gRPC C++ callback API

2022-10-19 Thread 'AJ Heller' via grpc.io
That's fine. You can replace the Wait call with `absl::SleepFor(absl::Seconds(42))` and it should work fine since the callback API does not need to borrow threads from the application. At shutdown, you'll still may want to wait on the gRPC server to finish doing its job before exiting, but

[grpc-io] Re: Question about proto message - breaking change behavior

2022-10-19 Thread 'Terry Wilson' via grpc.io
I can't comment on the C# specifics, but when dealing with protobuf changes, one should never reuse the ordinal numbers of deleted fields. If you don't need a field anymore, you should *reserve* the field number. You can find some documentation on this over here

[grpc-io] Last chance to sign up for gRPConf 2022

2022-10-19 Thread 'Terry Wilson' via grpc.io
Hi folks, this is your last chance to sign up for next week's KubeCon 2022 in Detroit and more specifically gRPConf 2022 happening on Monday 10/24! Come learn about the latest developments from several talks we have prepared for you and bring your questions to the gRPC team. We are also very

[grpc-io] Debug C++ GRPC: How to examine object values in Visual Studio?

2022-10-19 Thread Steven Peterson
In the Visual Studio C++ debugger, GRPC objects are mostly shown as pointers, but I can't expand to see the value of strings, embedded messages or arrays of repeating messages in a non-trivial data-structure. My friends in Python and C# claim they have better visibility and can easily see the