k3s/vendor/google.golang.org/grpc
Erik Wilson 765fd253f6 Update vendor 2019-08-19 09:17:28 -07:00
..
balancer Update vendor 2019-08-19 09:17:28 -07:00
codes Update vendor 2019-08-19 09:17:28 -07:00
connectivity Update vendor 2019-08-19 09:17:28 -07:00
credentials Update vendor 2019-08-19 09:17:28 -07:00
encoding Update vendor 2019-08-19 09:17:28 -07:00
grpclog Update vendor 2019-08-19 09:17:28 -07:00
health Update vendor 2019-08-19 09:17:28 -07:00
internal Update vendor 2019-08-19 09:17:28 -07:00
keepalive Update vendor 2019-08-19 09:17:28 -07:00
metadata Update vendor 2019-08-19 09:17:28 -07:00
naming Update vendor 2019-08-19 09:17:28 -07:00
peer Update vendor 2019-08-19 09:17:28 -07:00
resolver Update vendor 2019-08-19 09:17:28 -07:00
stats Update vendor 2019-08-19 09:17:28 -07:00
status Update vendor 2019-08-19 09:17:28 -07:00
tap Update vendor 2019-08-19 09:17:28 -07:00
transport Update vendor 2019-08-19 09:17:28 -07:00
.travis.yml Bump grpc from 1.7.5 to 1.13.0 2018-11-15 16:39:42 -08:00
AUTHORS
CONTRIBUTING.md Bump grpc from 1.7.5 to 1.13.0 2018-11-15 16:39:42 -08:00
LICENSE
Makefile Bump grpc from 1.7.5 to 1.13.0 2018-11-15 16:39:42 -08:00
README.md Bump grpc from 1.7.5 to 1.13.0 2018-11-15 16:39:42 -08:00
backoff.go Bump grpc from 1.7.5 to 1.13.0 2018-11-15 16:39:42 -08:00
balancer.go Bump grpc from 1.7.5 to 1.13.0 2018-11-15 16:39:42 -08:00
balancer_conn_wrappers.go Bump grpc from 1.7.5 to 1.13.0 2018-11-15 16:39:42 -08:00
balancer_v1_wrapper.go Bump grpc from 1.7.5 to 1.13.0 2018-11-15 16:39:42 -08:00
call.go Bump grpc from 1.7.5 to 1.13.0 2018-11-15 16:39:42 -08:00
clientconn.go Bump grpc from 1.7.5 to 1.13.0 2018-11-15 16:39:42 -08:00
codec.go Bump grpc from 1.7.5 to 1.13.0 2018-11-15 16:39:42 -08:00
codegen.sh
doc.go Update vendor 2019-08-19 09:17:28 -07:00
envconfig.go Bump grpc from 1.7.5 to 1.13.0 2018-11-15 16:39:42 -08:00
go16.go Bump grpc from 1.7.5 to 1.13.0 2018-11-15 16:39:42 -08:00
go17.go Bump grpc from 1.7.5 to 1.13.0 2018-11-15 16:39:42 -08:00
interceptor.go Bump grpc from 1.7.5 to 1.13.0 2018-11-15 16:39:42 -08:00
picker_wrapper.go Bump grpc from 1.7.5 to 1.13.0 2018-11-15 16:39:42 -08:00
pickfirst.go Bump grpc from 1.7.5 to 1.13.0 2018-11-15 16:39:42 -08:00
proxy.go Bump grpc from 1.7.5 to 1.13.0 2018-11-15 16:39:42 -08:00
resolver_conn_wrapper.go Bump grpc from 1.7.5 to 1.13.0 2018-11-15 16:39:42 -08:00
rpc_util.go Bump grpc from 1.7.5 to 1.13.0 2018-11-15 16:39:42 -08:00
server.go Bump grpc from 1.7.5 to 1.13.0 2018-11-15 16:39:42 -08:00
service_config.go Bump grpc from 1.7.5 to 1.13.0 2018-11-15 16:39:42 -08:00
stickiness_linkedmap.go Bump grpc from 1.7.5 to 1.13.0 2018-11-15 16:39:42 -08:00
stream.go Bump grpc from 1.7.5 to 1.13.0 2018-11-15 16:39:42 -08:00
trace.go
version.go Bump grpc from 1.7.5 to 1.13.0 2018-11-15 16:39:42 -08:00
vet.sh Bump grpc from 1.7.5 to 1.13.0 2018-11-15 16:39:42 -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 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