android13/external/grpc-grpc
liiir1985 ad350b4d66 补上遗漏的文件 2024-07-01 23:19:47 +08:00
..
.github initial 2024-06-22 20:45:49 +08:00
.vscode initial 2024-06-22 20:45:49 +08:00
bazel initial 2024-06-22 20:45:49 +08:00
cmake initial 2024-06-22 20:45:49 +08:00
doc initial 2024-06-22 20:45:49 +08:00
etc initial 2024-06-22 20:45:49 +08:00
examples initial 2024-06-22 20:45:49 +08:00
include initial 2024-06-22 20:45:49 +08:00
src initial 2024-06-22 20:45:49 +08:00
summerofcode initial 2024-06-22 20:45:49 +08:00
templates 补上遗漏的文件 2024-07-01 23:19:47 +08:00
test initial 2024-06-22 20:45:49 +08:00
third_party initial 2024-06-22 20:45:49 +08:00
tools 补上遗漏的文件 2024-07-01 23:19:47 +08:00
.clang-format initial 2024-06-22 20:45:49 +08:00
.clang-tidy initial 2024-06-22 20:45:49 +08:00
.clang_complete initial 2024-06-22 20:45:49 +08:00
.editorconfig initial 2024-06-22 20:45:49 +08:00
.istanbul.yml initial 2024-06-22 20:45:49 +08:00
.pylintrc initial 2024-06-22 20:45:49 +08:00
.pylintrc-tests initial 2024-06-22 20:45:49 +08:00
.rspec initial 2024-06-22 20:45:49 +08:00
.travis.yml initial 2024-06-22 20:45:49 +08:00
.yardopts initial 2024-06-22 20:45:49 +08:00
AUTHORS initial 2024-06-22 20:45:49 +08:00
Android.bp initial 2024-06-22 20:45:49 +08:00
BUILD initial 2024-06-22 20:45:49 +08:00
BUILDING.md initial 2024-06-22 20:45:49 +08:00
CMakeLists.txt initial 2024-06-22 20:45:49 +08:00
CODE-OF-CONDUCT.md initial 2024-06-22 20:45:49 +08:00
CONCEPTS.md initial 2024-06-22 20:45:49 +08:00
CONTRIBUTING.md initial 2024-06-22 20:45:49 +08:00
Gemfile initial 2024-06-22 20:45:49 +08:00
LICENSE initial 2024-06-22 20:45:49 +08:00
MANIFEST.md initial 2024-06-22 20:45:49 +08:00
METADATA initial 2024-06-22 20:45:49 +08:00
Makefile initial 2024-06-22 20:45:49 +08:00
NOTICE.txt initial 2024-06-22 20:45:49 +08:00
OWNERS initial 2024-06-22 20:45:49 +08:00
PYTHON-MANIFEST.in initial 2024-06-22 20:45:49 +08:00
README.md initial 2024-06-22 20:45:49 +08:00
Rakefile initial 2024-06-22 20:45:49 +08:00
TROUBLESHOOTING.md initial 2024-06-22 20:45:49 +08:00
WORKSPACE initial 2024-06-22 20:45:49 +08:00
build.yaml initial 2024-06-22 20:45:49 +08:00
build_config.rb initial 2024-06-22 20:45:49 +08:00
composer.json initial 2024-06-22 20:45:49 +08:00
config.m4 initial 2024-06-22 20:45:49 +08:00
config.w32 initial 2024-06-22 20:45:49 +08:00
gRPC-C++.podspec initial 2024-06-22 20:45:49 +08:00
gRPC-Core.podspec initial 2024-06-22 20:45:49 +08:00
gRPC-ProtoRPC.podspec initial 2024-06-22 20:45:49 +08:00
gRPC-RxLibrary.podspec initial 2024-06-22 20:45:49 +08:00
gRPC.podspec initial 2024-06-22 20:45:49 +08:00
grpc.bzl initial 2024-06-22 20:45:49 +08:00
grpc.def initial 2024-06-22 20:45:49 +08:00
grpc.gemspec initial 2024-06-22 20:45:49 +08:00
grpc.gyp initial 2024-06-22 20:45:49 +08:00
package.xml initial 2024-06-22 20:45:49 +08:00
requirements.bazel.txt initial 2024-06-22 20:45:49 +08:00
requirements.txt initial 2024-06-22 20:45:49 +08:00
setup.cfg initial 2024-06-22 20:45:49 +08:00
setup.py initial 2024-06-22 20:45:49 +08:00

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.

Homepage: grpc.io
Mailing List: grpc-io@googlegroups.com

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.

Language Source
Shared C [core library] src/core
C++ src/cpp
Ruby src/ruby
Python src/python
PHP src/php
C# src/csharp
Objective-C src/objective-c
Language Source repo
Java grpc-java
Go grpc-go
NodeJS grpc-node
WebJS grpc-web
Dart grpc-dart