grpc/examples/cpp/route_guide
Nicolas Noble eb2ae7a0cc
Fixing RouteGuide's C++ Reactor example. (#29404)
* Fixing RouteGuide's C++ Reactor example.

The current method involves locking and unlocking a mutex from different
threads, which isn't allowed. Changing the strategy a bit to address
this.

* Automated change: Fix sanity tests

* Switching to absl::Mutex to annotate usage properly.

* Actually, let's not cover the examples with sanity checks.
2022-04-21 10:03:28 -07:00
..
BUILD Add a test for a (now-illegal) build file construct (#27602) 2021-10-06 07:43:59 -07:00
CMakeLists.txt Added CMakeLists for route_guide example 2020-12-22 13:44:35 -08:00
Makefile Pointing the protobuf submodule to the new URL (#26811) 2021-07-29 10:19:16 -07:00
README.md Docs: fix links to grpc.io tutorial pages 2020-06-16 08:47:24 -04:00
helper.cc RouteGuide example: Abort if database file not found (#29398) 2022-04-14 15:13:33 -07:00
helper.h clang-format C++ examples (#25764) 2021-03-22 10:23:52 -07:00
route_guide_callback_client.cc Small cleanup (#29125) 2022-03-16 18:26:41 -07:00
route_guide_callback_server.cc Fixing RouteGuide's C++ Reactor example. (#29404) 2022-04-21 10:03:28 -07:00
route_guide_client.cc Adjust include order per style guide (#27175) 2021-09-08 12:14:44 -07:00
route_guide_db.json move examples to correct locations 2015-08-27 14:00:20 -07:00
route_guide_server.cc Adjust include order per style guide (#27175) 2021-09-08 12:14:44 -07:00

README.md

gRPC Basics: C++ sample code

The files in this folder are the samples used in gRPC Basics: C++, a detailed tutorial for using gRPC in C++.