open-consul/vendor/google.golang.org/grpc
Jeff Mitchell b43800125c
Update vendoring from go mod. (#5566)
2019-03-26 17:50:42 -04:00
..
balancer xDS Server Implementation (#4731) 2018-10-10 16:55:34 +01:00
codes xDS Server Implementation (#4731) 2018-10-10 16:55:34 +01:00
connectivity Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
credentials xDS Server Implementation (#4731) 2018-10-10 16:55:34 +01:00
encoding xDS Server Implementation (#4731) 2018-10-10 16:55:34 +01:00
grpclog xDS Server Implementation (#4731) 2018-10-10 16:55:34 +01:00
health Update vendoring from go mod. (#5566) 2019-03-26 17:50:42 -04:00
internal xDS Server Implementation (#4731) 2018-10-10 16:55:34 +01:00
keepalive Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
metadata xDS Server Implementation (#4731) 2018-10-10 16:55:34 +01:00
naming xDS Server Implementation (#4731) 2018-10-10 16:55:34 +01:00
peer Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
resolver xDS Server Implementation (#4731) 2018-10-10 16:55:34 +01:00
stats xDS Server Implementation (#4731) 2018-10-10 16:55:34 +01:00
status xDS Server Implementation (#4731) 2018-10-10 16:55:34 +01:00
tap Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
.travis.yml Update vendoring from go mod. (#5566) 2019-03-26 17:50:42 -04:00
AUTHORS Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
CONTRIBUTING.md xDS Server Implementation (#4731) 2018-10-10 16:55:34 +01:00
LICENSE xDS Server Implementation (#4731) 2018-10-10 16:55:34 +01:00
Makefile xDS Server Implementation (#4731) 2018-10-10 16:55:34 +01:00
README.md xDS Server Implementation (#4731) 2018-10-10 16:55:34 +01:00
backoff.go xDS Server Implementation (#4731) 2018-10-10 16:55:34 +01:00
balancer.go xDS Server Implementation (#4731) 2018-10-10 16:55:34 +01:00
balancer_conn_wrappers.go xDS Server Implementation (#4731) 2018-10-10 16:55:34 +01:00
balancer_v1_wrapper.go xDS Server Implementation (#4731) 2018-10-10 16:55:34 +01:00
call.go xDS Server Implementation (#4731) 2018-10-10 16:55:34 +01:00
clientconn.go xDS Server Implementation (#4731) 2018-10-10 16:55:34 +01:00
codec.go xDS Server Implementation (#4731) 2018-10-10 16:55:34 +01:00
codegen.sh Update vendoring from go mod. (#5566) 2019-03-26 17:50:42 -04:00
dialoptions.go xDS Server Implementation (#4731) 2018-10-10 16:55:34 +01:00
doc.go Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
go.mod xDS Server Implementation (#4731) 2018-10-10 16:55:34 +01:00
go.sum xDS Server Implementation (#4731) 2018-10-10 16:55:34 +01:00
go16.go xDS Server Implementation (#4731) 2018-10-10 16:55:34 +01:00
go17.go xDS Server Implementation (#4731) 2018-10-10 16:55:34 +01:00
install_gae.sh Update vendoring from go mod. (#5566) 2019-03-26 17:50:42 -04:00
interceptor.go xDS Server Implementation (#4731) 2018-10-10 16:55:34 +01:00
picker_wrapper.go xDS Server Implementation (#4731) 2018-10-10 16:55:34 +01:00
pickfirst.go xDS Server Implementation (#4731) 2018-10-10 16:55:34 +01:00
proxy.go Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
resolver_conn_wrapper.go xDS Server Implementation (#4731) 2018-10-10 16:55:34 +01:00
rpc_util.go xDS Server Implementation (#4731) 2018-10-10 16:55:34 +01:00
server.go xDS Server Implementation (#4731) 2018-10-10 16:55:34 +01:00
service_config.go xDS Server Implementation (#4731) 2018-10-10 16:55:34 +01:00
stream.go xDS Server Implementation (#4731) 2018-10-10 16:55:34 +01:00
trace.go Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
version.go xDS Server Implementation (#4731) 2018-10-10 16:55:34 +01:00
vet.sh Update vendoring from go mod. (#5566) 2019-03-26 17:50:42 -04: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 soon.

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