containerd/vendor/google.golang.org/grpc
Derek McGowan d2fc059229
Update grpc to 1.12
Signed-off-by: Derek McGowan <derek@mcgstyle.net>
2018-05-25 13:22:18 -07:00
..
balancer Update grpc to 1.12 2018-05-25 13:22:18 -07:00
channelz Update grpc to 1.12 2018-05-25 13:22:18 -07:00
codes vendor: update grpc to 1.10.1 2018-04-06 13:53:49 -07:00
connectivity vendor: update protobuf, grpc and gogo 2017-11-09 13:24:41 -08:00
credentials vendor: update grpc to 1.10.1 2018-04-06 13:53:49 -07:00
encoding Update grpc to 1.12 2018-05-25 13:22:18 -07:00
grpclb/grpc_lb_v1/messages Update grpc to 1.12 2018-05-25 13:22:18 -07:00
grpclog Update grpc to 1.12 2018-05-25 13:22:18 -07:00
health Update grpc to 1.12 2018-05-25 13:22:18 -07:00
internal vendor: update grpc to 1.10.1 2018-04-06 13:53:49 -07:00
keepalive vendor: update protobuf, grpc and gogo 2017-11-09 13:24:41 -08:00
metadata Update grpc to 1.12 2018-05-25 13:22:18 -07:00
naming Update grpc to 1.12 2018-05-25 13:22:18 -07:00
peer vendor: update protobuf, grpc and gogo 2017-11-09 13:24:41 -08:00
resolver Update grpc to 1.12 2018-05-25 13:22:18 -07:00
stats Update grpc to 1.12 2018-05-25 13:22:18 -07:00
status Update grpc to 1.12 2018-05-25 13:22:18 -07:00
tap vendor: update protobuf, grpc and gogo 2017-11-09 13:24:41 -08:00
transport Update grpc to 1.12 2018-05-25 13:22:18 -07:00
backoff.go vendor: update grpc to 1.10.1 2018-04-06 13:53:49 -07:00
balancer_conn_wrappers.go Update grpc to 1.12 2018-05-25 13:22:18 -07:00
balancer_v1_wrapper.go Update grpc to 1.12 2018-05-25 13:22:18 -07:00
balancer.go Update grpc to 1.12 2018-05-25 13:22:18 -07:00
call.go Update grpc to 1.12 2018-05-25 13:22:18 -07:00
clientconn.go Update grpc to 1.12 2018-05-25 13:22:18 -07:00
codec.go vendor: update grpc to 1.10.1 2018-04-06 13:53:49 -07:00
doc.go vendor: update protobuf, grpc and gogo 2017-11-09 13:24:41 -08:00
envconfig.go Update grpc to 1.12 2018-05-25 13:22:18 -07:00
go16.go Update grpc to 1.12 2018-05-25 13:22:18 -07:00
go17.go Update grpc to 1.12 2018-05-25 13:22:18 -07:00
grpclb_picker.go vendor: update grpc to 1.10.1 2018-04-06 13:53:49 -07:00
grpclb_remote_balancer.go Update grpc to 1.12 2018-05-25 13:22:18 -07:00
grpclb_util.go Update grpc to 1.12 2018-05-25 13:22:18 -07:00
grpclb.go Update grpc to 1.12 2018-05-25 13:22:18 -07:00
interceptor.go Update grpc to 1.12 2018-05-25 13:22:18 -07:00
LICENSE vendor: update protobuf, grpc and gogo 2017-11-09 13:24:41 -08:00
picker_wrapper.go Update grpc to 1.12 2018-05-25 13:22:18 -07:00
pickfirst.go vendor: update grpc to 1.10.1 2018-04-06 13:53:49 -07:00
proxy.go vendor: update grpc to 1.10.1 2018-04-06 13:53:49 -07:00
README.md Update grpc to 1.12 2018-05-25 13:22:18 -07:00
resolver_conn_wrapper.go Update grpc to 1.12 2018-05-25 13:22:18 -07:00
rpc_util.go Update grpc to 1.12 2018-05-25 13:22:18 -07:00
server.go Update grpc to 1.12 2018-05-25 13:22:18 -07:00
service_config.go Update grpc to 1.12 2018-05-25 13:22:18 -07:00
stream.go Update grpc to 1.12 2018-05-25 13:22:18 -07:00
trace.go vendor: update protobuf, grpc and gogo 2017-11-09 13:24:41 -08:00

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