kaniko/vendor/google.golang.org/grpc
Tejal Desai 6b020a1f97 fix highwayhash 2019-12-21 12:18:09 -08:00
..
balancer Updated vendor 2018-03-26 14:44:07 -07:00
codes Updated vendor 2018-03-26 14:44:07 -07:00
connectivity Updated vendor 2018-03-26 14:44:07 -07:00
credentials Updated vendor 2018-03-26 14:44:07 -07:00
encoding Updated vendor 2018-03-26 14:44:07 -07:00
grpclb/grpc_lb_v1/messages fix highwayhash 2019-12-21 12:18:09 -08:00
grpclog Updated vendor 2018-03-26 14:44:07 -07:00
health fix highwayhash 2019-12-21 12:18:09 -08:00
internal Updated vendor 2018-03-26 14:44:07 -07:00
keepalive Updated vendor 2018-03-26 14:44:07 -07:00
metadata Updated vendor, for container-diff 2018-04-11 14:06:23 -07:00
naming Updated vendor 2018-03-26 14:44:07 -07:00
peer Updated vendor 2018-03-26 14:44:07 -07:00
resolver Updated vendor for exported BuildArgs 2018-05-09 11:56:32 -07:00
stats Updated vendor, for container-diff 2018-04-11 14:06:23 -07:00
status Updated vendor for exported BuildArgs 2018-05-09 11:56:32 -07:00
tap Updated vendor 2018-03-26 14:44:07 -07:00
transport Updated vendor for exported BuildArgs 2018-05-09 11:56:32 -07:00
.travis.yml fix highwayhash 2019-12-21 12:18:09 -08:00
AUTHORS Updated vendor 2018-03-26 14:44:07 -07:00
CONTRIBUTING.md fix highwayhash 2019-12-21 12:18:09 -08:00
LICENSE Updated vendor 2018-03-26 14:44:07 -07:00
Makefile fix highwayhash 2019-12-21 12:18:09 -08:00
README.md fix highwayhash 2019-12-21 12:18:09 -08:00
backoff.go Updated vendor 2018-03-26 14:44:07 -07:00
balancer.go Updated vendor 2018-03-26 14:44:07 -07:00
balancer_conn_wrappers.go Updated vendor 2018-03-26 14:44:07 -07:00
balancer_v1_wrapper.go Updated vendor 2018-03-26 14:44:07 -07:00
call.go Updated vendor for exported BuildArgs 2018-05-09 11:56:32 -07:00
clientconn.go Updated vendor for exported BuildArgs 2018-05-09 11:56:32 -07:00
codec.go Updated vendor 2018-03-26 14:44:07 -07:00
codegen.sh fix highwayhash 2019-12-21 12:18:09 -08:00
doc.go Updated vendor 2018-03-26 14:44:07 -07:00
go16.go Updated vendor, for container-diff 2018-04-11 14:06:23 -07:00
go17.go Updated vendor, for container-diff 2018-04-11 14:06:23 -07:00
grpclb.go Updated vendor 2018-03-26 14:44:07 -07:00
grpclb_picker.go Updated vendor 2018-03-26 14:44:07 -07:00
grpclb_remote_balancer.go Updated vendor 2018-03-26 14:44:07 -07:00
grpclb_util.go Updated vendor 2018-03-26 14:44:07 -07:00
interceptor.go Updated vendor, for container-diff 2018-04-11 14:06:23 -07:00
picker_wrapper.go Updated vendor, for container-diff 2018-04-11 14:06:23 -07:00
pickfirst.go Updated vendor 2018-03-26 14:44:07 -07:00
proxy.go Updated vendor 2018-03-26 14:44:07 -07:00
resolver_conn_wrapper.go Updated vendor for exported BuildArgs 2018-05-09 11:56:32 -07:00
rpc_util.go Updated vendor for exported BuildArgs 2018-05-09 11:56:32 -07:00
server.go Updated vendor for exported BuildArgs 2018-05-09 11:56:32 -07:00
service_config.go Updated vendor 2018-03-26 14:44:07 -07:00
stream.go Updated vendor for exported BuildArgs 2018-05-09 11:56:32 -07:00
trace.go Updated vendor 2018-03-26 14:44:07 -07:00
vet.sh fix highwayhash 2019-12-21 12:18:09 -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 as of the next gRPC-Go release (1.8).

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