Android 10.0.0 Release 28 (QQ1C.200205.002)
[automerger skipped] DO NOT MERGE - Merge pi-dev@5234907 into stage-aosp-master
am: 261e7c9598 -s ours
am skip reason: subject contains skip directive

Change-Id: I940bf1db9d800436a69759267de5b2ea2d1d35bc
tree: b99f98a0d2fe0d5d49d6283b80dafea9f199636a
  1. .github/
  2. .vscode/
  3. bazel/
  4. cmake/
  5. doc/
  6. etc/
  7. examples/
  8. include/
  9. src/
  10. summerofcode/
  11. templates/
  12. test/
  13. third_party/
  14. tools/
  15. .clang-format
  16. .clang-tidy
  17. .clang_complete
  18. .editorconfig
  19. .gitignore
  20. .istanbul.yml
  21. .pylintrc
  22. .pylintrc-tests
  23. .rspec
  24. .travis.yml
  25. .yardopts
  26. AUTHORS
  27. BUILD
  28. build.yaml
  29. build_config.rb
  30. BUILDING.md
  31. CMakeLists.txt
  32. CODE-OF-CONDUCT.md
  33. composer.json
  34. CONCEPTS.md
  35. config.m4
  36. config.w32
  37. CONTRIBUTING.md
  38. Gemfile
  39. gRPC-C++.podspec
  40. gRPC-Core.podspec
  41. gRPC-ProtoRPC.podspec
  42. gRPC-RxLibrary.podspec
  43. grpc.bzl
  44. grpc.def
  45. grpc.gemspec
  46. grpc.gyp
  47. gRPC.podspec
  48. LICENSE
  49. Makefile
  50. MANIFEST.md
  51. NOTICE.txt
  52. OWNERS
  53. package.xml
  54. PYTHON-MANIFEST.in
  55. Rakefile
  56. README.md
  57. requirements.bazel.txt
  58. requirements.txt
  59. setup.cfg
  60. setup.py
  61. TROUBLESHOOTING.md
  62. WORKSPACE
README.md

gRPC - An RPC library and framework

gRPC is a modern, open source, high-performance remote procedure call (RPC) framework that can run anywhere. It enables client and server applications to communicate transparently, and makes it easier to build connected systems.

Join the chat at https://gitter.im/grpc/grpc

To start using gRPC

To maximize usability, gRPC supports the standard way of adding dependencies in your language of choice (if there is one). In most languages, the gRPC runtime comes in form of a package available in your language's package manager.

For instructions on how to use the language-specific gRPC runtime in your project, please refer to these documents

  • C++: follow the instructions under the src/cpp directory
  • C#: NuGet package Grpc
  • Dart: pub package grpc
  • Go: go get google.golang.org/grpc
  • Java: Use JARs from Maven Central Repository
  • Node: npm install grpc
  • Objective-C: Add gRPC-ProtoRPC dependency to podspec
  • PHP: pecl install grpc
  • Python: pip install grpcio
  • Ruby: gem install grpc
  • WebJS: follow the grpc-web instructions

You can find per-language quickstart guides and tutorials in Documentation section on grpc.io website. The code examples are available in the examples directory.

Precompiled bleeding-edge package builds of gRPC master branch's HEAD are uploaded daily to packages.grpc.io.

To start developing gRPC

Contributions are welcome!

Please read How to contribute which will guide you through the entire workflow of how to build the source code, how to run the tests and how to contribute your changes to the gRPC codebase. The document also contains info on how the contributing process works and contains best practices for creating contributions.

Troubleshooting

Sometimes things go wrong. Please check out the Troubleshooting guide if you are experiencing issues with gRPC.

Performance

See Performance dashboard for the performance numbers for the latest released version.

Concepts

See gRPC Concepts

About This Repository

This repository contains source code for gRPC libraries for multiple languages written on top of shared C core library src/core.

Libraries in different languages may be in different states of development. We are seeking contributions for all of these libraries.

LanguageSource
Shared C [core library]src/core
C++src/cpp
Rubysrc/ruby
Pythonsrc/python
PHPsrc/php
C#src/csharp
Objective-Csrc/objective-c
LanguageSource repo
Javagrpc-java
Gogrpc-go
NodeJSgrpc-node
WebJSgrpc-web
Dartgrpc-dart