Lines Matching refs:RouteGuide
51 service RouteGuide {
58 all of which are used in the `RouteGuide` service:
157 - A class called `RouteGuide` that contains
159 defined in the `RouteGuide` service.
161 defined in the `RouteGuide` service.
167 First let's look at how we create a `RouteGuide` server. If you're only
172 There are two parts to making our `RouteGuide` service do its job:
178 You can find our example `RouteGuide` server in
182 ### Implementing RouteGuide
185 generated `RouteGuide::Service` interface:
188 class RouteGuideImpl final : public RouteGuide::Service {
192 In this case we're implementing the *synchronous* version of `RouteGuide`, which
194 asynchronous interface, `RouteGuide::AsyncService`, which allows you to further
295 do this for our `RouteGuide` service:
325 In this section, we'll look at creating a C++ client for our `RouteGuide`
341 provided in the `RouteGuide` class we generated from our `.proto`.
346 : stub_(RouteGuide::NewStub(channel)) {