k3s/vendor/google.golang.org/grpc
Joe Betz ac7690b0fe Version bump to grpc v1.7.5 2018-01-07 08:22:08 -08:00
..
balancer Version bump to grpc v1.7.5 2018-01-07 08:22:08 -08:00
codes Version bump to grpc v1.7.5 2018-01-07 08:22:08 -08:00
connectivity Version bump to grpc v1.7.5 2018-01-07 08:22:08 -08:00
credentials Version bump to grpc v1.7.5 2018-01-07 08:22:08 -08:00
grpclb/grpc_lb_v1 Version bump to grpc v1.7.5 2018-01-07 08:22:08 -08:00
grpclog Version bump to grpc v1.7.5 2018-01-07 08:22:08 -08:00
health/grpc_health_v1 Version bump to grpc v1.7.5 2018-01-07 08:22:08 -08:00
internal Version bump to grpc v1.7.5 2018-01-07 08:22:08 -08:00
keepalive Version bump to grpc v1.7.5 2018-01-07 08:22:08 -08:00
metadata Version bump to grpc v1.7.5 2018-01-07 08:22:08 -08:00
naming Version bump to grpc v1.7.5 2018-01-07 08:22:08 -08:00
peer Version bump to grpc v1.7.5 2018-01-07 08:22:08 -08:00
resolver Version bump to grpc v1.7.5 2018-01-07 08:22:08 -08:00
stats Version bump to grpc v1.7.5 2018-01-07 08:22:08 -08:00
status Version bump to grpc v1.7.5 2018-01-07 08:22:08 -08:00
tap Version bump to grpc v1.7.5 2018-01-07 08:22:08 -08:00
transport Version bump to grpc v1.7.5 2018-01-07 08:22:08 -08:00
.please-update Version bump to grpc v1.7.5 2018-01-07 08:22:08 -08:00
.travis.yml Version bump to grpc v1.7.5 2018-01-07 08:22:08 -08:00
AUTHORS Version bump to grpc v1.7.5 2018-01-07 08:22:08 -08:00
BUILD Version bump to grpc v1.7.5 2018-01-07 08:22:08 -08:00
CONTRIBUTING.md Version bump to grpc v1.7.5 2018-01-07 08:22:08 -08:00
LICENSE Version bump to grpc v1.7.5 2018-01-07 08:22:08 -08:00
Makefile Version bump to grpc v1.7.5 2018-01-07 08:22:08 -08:00
README.md Version bump to grpc v1.7.5 2018-01-07 08:22:08 -08:00
backoff.go Version bump to grpc v1.7.5 2018-01-07 08:22:08 -08:00
balancer.go Version bump to grpc v1.7.5 2018-01-07 08:22:08 -08:00
balancer_conn_wrappers.go Version bump to grpc v1.7.5 2018-01-07 08:22:08 -08:00
balancer_v1_wrapper.go Version bump to grpc v1.7.5 2018-01-07 08:22:08 -08:00
call.go Version bump to grpc v1.7.5 2018-01-07 08:22:08 -08:00
clientconn.go Version bump to grpc v1.7.5 2018-01-07 08:22:08 -08:00
codec.go Version bump to grpc v1.7.5 2018-01-07 08:22:08 -08:00
codegen.sh Bumped gRPC version to 1.3.0 2017-08-23 09:55:55 -07:00
doc.go Version bump to grpc v1.7.5 2018-01-07 08:22:08 -08:00
grpclb.go Version bump to grpc v1.7.5 2018-01-07 08:22:08 -08:00
interceptor.go Version bump to grpc v1.7.5 2018-01-07 08:22:08 -08:00
picker_wrapper.go Version bump to grpc v1.7.5 2018-01-07 08:22:08 -08:00
pickfirst.go Version bump to grpc v1.7.5 2018-01-07 08:22:08 -08:00
proxy.go Version bump to grpc v1.7.5 2018-01-07 08:22:08 -08:00
resolver_conn_wrapper.go Version bump to grpc v1.7.5 2018-01-07 08:22:08 -08:00
rpc_util.go Version bump to grpc v1.7.5 2018-01-07 08:22:08 -08:00
server.go Version bump to grpc v1.7.5 2018-01-07 08:22:08 -08:00
stream.go Version bump to grpc v1.7.5 2018-01-07 08:22:08 -08:00
trace.go Version bump to grpc v1.7.5 2018-01-07 08:22:08 -08:00
vet.sh Version bump to grpc v1.7.5 2018-01-07 08:22:08 -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