route/vendor/google.golang.org/grpc
Cadey Ratio 12e7f0c3cc move some tools into a new contrib repo 2018-01-27 08:41:04 -08:00
..
codes upgrade all the dependencies 2018-01-03 11:19:49 -08:00
status upgrade all the dependencies 2018-01-03 11:19:49 -08:00
.please-update change from vendor to dep 2017-10-06 08:29:20 -07:00
.travis.yml upgrade all the dependencies 2018-01-03 11:19:49 -08:00
AUTHORS change from vendor to dep 2017-10-06 08:29:20 -07:00
CONTRIBUTING.md upgrade all the dependencies 2018-01-03 11:19:49 -08:00
LICENSE change from vendor to dep 2017-10-06 08:29:20 -07:00
Makefile upgrade all the dependencies 2018-01-03 11:19:49 -08:00
README.md upgrade all the dependencies 2018-01-03 11:19:49 -08:00
backoff.go upgrade all the dependencies 2018-01-03 11:19:49 -08:00
backoff_test.go change from vendor to dep 2017-10-06 08:29:20 -07:00
balancer.go upgrade all the dependencies 2018-01-03 11:19:49 -08:00
balancer_conn_wrappers.go upgrade all the dependencies 2018-01-03 11:19:49 -08:00
balancer_switching_test.go upgrade all the dependencies 2018-01-03 11:19:49 -08:00
balancer_test.go upgrade all the dependencies 2018-01-03 11:19:49 -08:00
balancer_v1_wrapper.go upgrade all the dependencies 2018-01-03 11:19:49 -08:00
call.go upgrade all the dependencies 2018-01-03 11:19:49 -08:00
call_test.go upgrade all the dependencies 2018-01-03 11:19:49 -08:00
clientconn.go update deps, vendor mage 2018-01-16 20:32:37 -08:00
clientconn_test.go upgrade all the dependencies 2018-01-03 11:19:49 -08:00
codec.go upgrade all the dependencies 2018-01-03 11:19:49 -08:00
codec_benchmark_test.go upgrade all the dependencies 2018-01-03 11:19:49 -08:00
codec_test.go change from vendor to dep 2017-10-06 08:29:20 -07:00
codegen.sh change from vendor to dep 2017-10-06 08:29:20 -07:00
doc.go vendor: update grpc 2017-09-30 09:47:47 -07:00
go16.go vendor: update grpc 2017-09-30 09:47:47 -07:00
go17.go upgrade all the dependencies 2018-01-03 11:19:49 -08:00
grpclb.go upgrade all the dependencies 2018-01-03 11:19:49 -08:00
grpclb_picker.go upgrade all the dependencies 2018-01-03 11:19:49 -08:00
grpclb_remote_balancer.go upgrade all the dependencies 2018-01-03 11:19:49 -08:00
grpclb_util.go upgrade all the dependencies 2018-01-03 11:19:49 -08:00
interceptor.go vendor: update grpc 2017-09-30 09:47:47 -07:00
picker_wrapper.go upgrade all the dependencies 2018-01-03 11:19:49 -08:00
picker_wrapper_test.go upgrade all the dependencies 2018-01-03 11:19:49 -08:00
pickfirst.go upgrade all the dependencies 2018-01-03 11:19:49 -08:00
pickfirst_test.go upgrade all the dependencies 2018-01-03 11:19:49 -08:00
proxy.go vendor: update grpc 2017-09-30 09:47:47 -07:00
proxy_test.go upgrade all the dependencies 2018-01-03 11:19:49 -08:00
resolver_conn_wrapper.go upgrade all the dependencies 2018-01-03 11:19:49 -08:00
resolver_conn_wrapper_test.go upgrade all the dependencies 2018-01-03 11:19:49 -08:00
resolver_test.go upgrade all the dependencies 2018-01-03 11:19:49 -08:00
rpc_util.go update dependencies 2018-01-20 09:57:11 -08:00
rpc_util_test.go change from vendor to dep 2017-10-06 08:29:20 -07:00
server.go upgrade all the dependencies 2018-01-03 11:19:49 -08:00
server_test.go upgrade all the dependencies 2018-01-03 11:19:49 -08:00
service_config.go upgrade all the dependencies 2018-01-03 11:19:49 -08:00
service_config_test.go upgrade all the dependencies 2018-01-03 11:19:49 -08:00
stream.go upgrade all the dependencies 2018-01-03 11:19:49 -08:00
trace.go upgrade all the dependencies 2018-01-03 11:19:49 -08:00
vet.sh upgrade all the dependencies 2018-01-03 11:19:49 -08:00

README.md

gRPC-Go

Build Status GoDoc GoReportCard

The Go implementation of gRPC: A high performance, open source, general RPC framework that puts mobile and HTTP/2 first. For more information see the gRPC Quick Start: Go guide.

Installation

To install this package, you need to install Go and setup your Go workspace on your computer. The simplest way to install the library is to run:

$ go get -u google.golang.org/grpc

Prerequisites

This requires Go 1.6 or later. Go 1.7 will be required as of the next gRPC-Go release (1.8).

Constraints

The grpc package should only depend on standard Go packages and a small number of exceptions. If your contribution introduces new dependencies which are NOT in the list, you need a discussion with gRPC-Go authors and consultants.

Documentation

See API documentation for package and API descriptions and find examples in the examples directory.

Performance

See the current benchmarks for some of the languages supported in this dashboard.

Status

General Availability Google Cloud Platform Launch Stages.

FAQ

Compiling error, undefined: grpc.SupportPackageIsVersion

Please update proto package, gRPC package and rebuild the proto files:

  • go get -u github.com/golang/protobuf/{proto,protoc-gen-go}
  • go get -u google.golang.org/grpc
  • protoc --go_out=plugins=grpc:. *.proto