Home | History | Annotate | Download | only in gRPC
      1 Use in C++    {#flatbuffers_grpc_guide_use_cpp}
      2 ==========
      3 
      4 ## Before you get started
      5 
      6 Before diving into the FlatBuffers gRPC usage in C++, you should already be
      7 familiar with the following:
      8 
      9 - FlatBuffers as a serialization format
     10 - [gRPC](http://www.grpc.io/docs/) usage
     11 
     12 ## Using the FlatBuffers gRPC C++ library
     13 
     14 NOTE: The examples below are also in the `grpc/samples/greeter` directory.
     15 
     16 We will illustrate usage with the following schema:
     17 
     18 @include grpc/samples/greeter/greeter.fbs
     19 
     20 When we run `flatc`, we pass in the `--grpc` option and generage an additional
     21 `greeter.grpc.fb.h` and `greeter.grpc.fb.cc`.
     22 
     23 Example server code looks like this:
     24 
     25 @include grpc/samples/greeter/server.cpp
     26 
     27 Example client code looks like this:
     28 
     29 @include grpc/samples/greeter/client.cpp
     30