mirror of https://github.com/grpc/grpc.io.git
commit
ab18a3d847
|
|
@ -19,7 +19,7 @@ draft: false
|
|||
|
||||
<h3>C++</h3>
|
||||
<a href="/docs/quickstart/cpp/">Quick Start Guide</a><br>
|
||||
<a href="/docs/tutorials/basic/c/">gRPC Basics Tutorial</a><br>
|
||||
<a href="/docs/tutorials/basic/cpp/">gRPC Basics Tutorial</a><br>
|
||||
<a href="https://grpc.io/grpc/cpp/index.html">API Reference</a>
|
||||
<br>
|
||||
<h3 style="margin-top:3%;">Go</h3>
|
||||
|
|
|
|||
|
|
@ -76,7 +76,7 @@ Now let's look at how to update the application with an extra method on the
|
|||
server for the client to call. Our gRPC service is defined using protocol
|
||||
buffers; you can find out lots more about how to define a service in a `.proto`
|
||||
file in [What is gRPC?](/docs/guides/) and [gRPC Basics:
|
||||
C++](/docs/tutorials/basic/c/). For now all you need to know is that both the server and the client
|
||||
C++](/docs/tutorials/basic/cpp/). For now all you need to know is that both the server and the client
|
||||
"stub" have a `SayHello` RPC method that takes a `HelloRequest` parameter from
|
||||
the client and returns a `HelloResponse` from the server, and that this method
|
||||
is defined like this:
|
||||
|
|
@ -253,6 +253,6 @@ Just like we did before, from the `examples/cpp/helloworld` directory:
|
|||
|
||||
- Read a full explanation of how gRPC works in [What is gRPC?](/docs/guides/)
|
||||
and [gRPC Concepts](/docs/guides/concepts/)
|
||||
- Work through a more detailed tutorial in [gRPC Basics: C++](/docs/tutorials/basic/c/)
|
||||
- Work through a more detailed tutorial in [gRPC Basics: C++](/docs/tutorials/basic/cpp/)
|
||||
- Explore the gRPC C++ core API in its [reference
|
||||
documentation](/grpc/cpp/)
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ group: async
|
|||
This tutorial shows you how to write a simple server and client in C++ using
|
||||
gRPC's asynchronous/non-blocking APIs. It assumes you are already familiar with
|
||||
writing simple synchronous gRPC code, as described in [gRPC Basics:
|
||||
C++](/docs/tutorials/basic/c/). The example used in this tutorial follows on
|
||||
C++](/docs/tutorials/basic/cpp/). The example used in this tutorial follows on
|
||||
from the basic [Greeter example](https://github.com/grpc/grpc/tree/{{< param grpc_release_tag >}}/examples/cpp/helloworld) we used in the
|
||||
[overview](/docs/). You'll find it along with installation
|
||||
instructions in
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
layout: tutorials
|
||||
title: gRPC Basics - C++
|
||||
group: basic
|
||||
short: C
|
||||
short: C++
|
||||
---
|
||||
|
||||
This tutorial provides a basic C++ programmer's introduction to working with gRPC.
|
||||
Loading…
Reference in New Issue