ingress-nginx-helm/vendor/google.golang.org/grpc
Manuel de Brito Fontes f3bde94d68 Update go dependencies
2017-11-12 20:08:33 -03:00
..
balancer Add e2e tests 2017-10-20 20:33:48 -03:00
codes Update dependencies 2017-10-06 19:40:31 -03:00
connectivity Update dependencies 2017-10-06 19:40:31 -03:00
credentials Add e2e tests 2017-10-20 20:33:48 -03:00
grpclb Add e2e tests 2017-10-20 20:33:48 -03:00
grpclog Update dependencies 2017-10-06 19:40:31 -03:00
internal Update dependencies 2017-10-06 19:40:31 -03:00
keepalive Update dependencies 2017-10-06 19:40:31 -03:00
metadata Update dependencies 2017-10-06 19:40:31 -03:00
naming Add e2e tests 2017-10-20 20:33:48 -03:00
peer Update dependencies 2017-10-06 19:40:31 -03:00
resolver Add e2e tests 2017-10-20 20:33:48 -03:00
stats Add e2e tests 2017-10-20 20:33:48 -03:00
status Update dependencies 2017-10-06 19:40:31 -03:00
tap Update dependencies 2017-10-06 19:40:31 -03:00
transport Add e2e tests 2017-10-20 20:33:48 -03:00
.please-update Update dependencies 2017-10-06 19:40:31 -03:00
.travis.yml Add e2e tests 2017-10-20 20:33:48 -03:00
AUTHORS Update dependencies 2017-10-06 19:40:31 -03:00
backoff.go Update dependencies 2017-10-06 19:40:31 -03:00
backoff_test.go Update dependencies 2017-10-06 19:40:31 -03:00
balancer.go Add e2e tests 2017-10-20 20:33:48 -03:00
balancer_conn_wrappers.go Add e2e tests 2017-10-20 20:33:48 -03:00
balancer_test.go Add e2e tests 2017-10-20 20:33:48 -03:00
balancer_v1_wrapper.go Add e2e tests 2017-10-20 20:33:48 -03:00
call.go Add e2e tests 2017-10-20 20:33:48 -03:00
call_test.go Add e2e tests 2017-10-20 20:33:48 -03:00
clientconn.go Update go dependencies 2017-11-12 20:08:33 -03:00
clientconn_test.go Add e2e tests 2017-10-20 20:33:48 -03:00
codec.go Update dependencies 2017-10-06 19:40:31 -03:00
codec_benchmark_test.go Update dependencies 2017-10-06 19:40:31 -03:00
codec_test.go Update dependencies 2017-10-06 19:40:31 -03:00
codegen.sh Update dependencies 2017-10-06 19:40:31 -03:00
CONTRIBUTING.md Update dependencies 2017-10-06 19:40:31 -03:00
doc.go Update dependencies 2017-10-06 19:40:31 -03:00
grpclb.go Add e2e tests 2017-10-20 20:33:48 -03:00
interceptor.go Update dependencies 2017-10-06 19:40:31 -03:00
LICENSE Update dependencies 2017-10-06 19:40:31 -03:00
Makefile Add e2e tests 2017-10-20 20:33:48 -03:00
picker_wrapper.go Add e2e tests 2017-10-20 20:33:48 -03:00
picker_wrapper_test.go Add e2e tests 2017-10-20 20:33:48 -03:00
pickfirst.go Add e2e tests 2017-10-20 20:33:48 -03:00
pickfirst_test.go Update go dependencies 2017-11-12 20:08:33 -03:00
proxy.go Add e2e tests 2017-10-20 20:33:48 -03:00
proxy_test.go Update go dependencies 2017-11-12 20:08:33 -03:00
README.md Add e2e tests 2017-10-20 20:33:48 -03:00
resolver_conn_wrapper.go Add e2e tests 2017-10-20 20:33:48 -03:00
resolver_conn_wrapper_test.go Add e2e tests 2017-10-20 20:33:48 -03:00
rpc_util.go Update go dependencies 2017-11-12 20:08:33 -03:00
rpc_util_test.go Update dependencies 2017-10-06 19:40:31 -03:00
server.go Add e2e tests 2017-10-20 20:33:48 -03:00
server_test.go Add e2e tests 2017-10-20 20:33:48 -03:00
stream.go Add e2e tests 2017-10-20 20:33:48 -03:00
trace.go Add e2e tests 2017-10-20 20:33:48 -03:00
vet.sh Add e2e tests 2017-10-20 20:33:48 -03:00

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