The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#) https://grpc.io/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Mark D. Roth 3d8b32d8b3 Convert byte_stream API to C++. 7 years ago
..
client Use static_cast rather than reinterpret_cast whenever possible 7 years ago
codegen Move headers from grpc++ to grpcpp 7 years ago
common Convert byte_stream API to C++. 7 years ago
ext Move headers from grpc++ to grpcpp 7 years ago
server Fix a thread name 7 years ago
thread_manager Name needs to only be alphanumeric+underscore+dash 7 years ago
util Use static_cast rather than reinterpret_cast whenever possible 7 years ago
README.md Consolidate build instructions in INSTALL.md and src/cpp/README.md 7 years ago

README.md

Overview

This directory contains source code for C++ implementation of gRPC.

To install gRPC for C++ on your system, follow the instructions to build from source here. This also installs the protocol buffer compiler protoc (if you don't have it already), and the C++ gRPC plugin for protoc.

Documentation

You can find out how to build and run our simplest gRPC C++ example in our C++ quick start.

For more detailed documentation on using gRPC in C++ , see our main documentation site at grpc.io, specifically:

  • Overview: An introduction to gRPC with a simple Hello World example in all our supported languages, including C++.
  • gRPC Basics - C++: A tutorial that steps you through creating a simple gRPC C++ example application.
  • Asynchronous Basics - C++: A tutorial that shows you how to use gRPC C++'s asynchronous/non-blocking APIs.

Examples

Code examples for gRPC C++ live in this repository's examples/cpp directory.