buildkit/vendor/google.golang.org/grpc
Tonis Tiigi b8dc00de71 vendor: update containerd to 1.0.1-rc0
Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
2018-01-11 17:49:09 -08:00
..
balancer vendor: update containerd to 9649a428e 2017-11-17 19:43:55 -08:00
codes vendor: update containerd to 9649a428e 2017-11-17 19:43:55 -08:00
connectivity vendor: update containerd to 9649a428e 2017-11-17 19:43:55 -08:00
credentials vendor: update containerd to 1.0.1-rc0 2018-01-11 17:49:09 -08:00
grpclb/grpc_lb_v1/messages vendor: update containerd to 9649a428e 2017-11-17 19:43:55 -08:00
grpclog vendor: update containerd to 9649a428e 2017-11-17 19:43:55 -08:00
health vendor: update containerd to 9649a428e 2017-11-17 19:43:55 -08:00
internal vendor: update containerd to 9649a428e 2017-11-17 19:43:55 -08:00
keepalive vendor: update containerd to 9649a428e 2017-11-17 19:43:55 -08:00
metadata vendor: update containerd to 9649a428e 2017-11-17 19:43:55 -08:00
naming vendor: update containerd to 9649a428e 2017-11-17 19:43:55 -08:00
peer vendor: update containerd to 9649a428e 2017-11-17 19:43:55 -08:00
resolver vendor: update containerd to 9649a428e 2017-11-17 19:43:55 -08:00
stats vendor: update containerd to 9649a428e 2017-11-17 19:43:55 -08:00
status vendor: update containerd to 9649a428e 2017-11-17 19:43:55 -08:00
tap vendor: update containerd to 9649a428e 2017-11-17 19:43:55 -08:00
transport vendor: update containerd to 1.0.1-rc0 2018-01-11 17:49:09 -08:00
LICENSE vendor: update containerd to 9649a428e 2017-11-17 19:43:55 -08:00
README.md vendor: update containerd to 9649a428e 2017-11-17 19:43:55 -08:00
backoff.go vendor: update containerd to 9649a428e 2017-11-17 19:43:55 -08:00
balancer.go vendor: update containerd to 9649a428e 2017-11-17 19:43:55 -08:00
balancer_conn_wrappers.go vendor: update containerd to 1.0.1-rc0 2018-01-11 17:49:09 -08:00
balancer_v1_wrapper.go vendor: update containerd to 9649a428e 2017-11-17 19:43:55 -08:00
call.go vendor: update containerd to 9649a428e 2017-11-17 19:43:55 -08:00
clientconn.go vendor: update containerd to 1.0.1-rc0 2018-01-11 17:49:09 -08:00
codec.go vendor: update containerd to 9649a428e 2017-11-17 19:43:55 -08:00
doc.go vendor: update containerd to 9649a428e 2017-11-17 19:43:55 -08:00
grpclb.go vendor: update containerd to 9649a428e 2017-11-17 19:43:55 -08:00
interceptor.go vendor: update containerd to 9649a428e 2017-11-17 19:43:55 -08:00
picker_wrapper.go vendor: update containerd to 9649a428e 2017-11-17 19:43:55 -08:00
pickfirst.go vendor: update containerd to 9649a428e 2017-11-17 19:43:55 -08:00
proxy.go vendor: update containerd to 9649a428e 2017-11-17 19:43:55 -08:00
resolver_conn_wrapper.go vendor: update containerd to 9649a428e 2017-11-17 19:43:55 -08:00
rpc_util.go vendor: update containerd to 1.0.1-rc0 2018-01-11 17:49:09 -08:00
server.go vendor: update containerd to 1.0.1-rc0 2018-01-11 17:49:09 -08:00
stream.go vendor: update containerd to 9649a428e 2017-11-17 19:43:55 -08:00
trace.go vendor: update containerd to 9649a428e 2017-11-17 19:43:55 -08:00

README.md

gRPC-Go

Build Status GoDoc

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.7 or later.

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