k3s/vendor/google.golang.org/grpc
Joe Betz 4263c75211 Update etcd client to 3.3.9 2018-10-08 13:34:34 -07:00
..
balancer Run hack/update-bazel.sh 2018-06-22 16:22:57 -07:00
codes Run hack/update-bazel.sh 2018-06-22 16:22:57 -07:00
connectivity Run hack/update-bazel.sh 2018-06-22 16:22:57 -07:00
credentials Run hack/update-bazel.sh 2018-06-22 16:22:57 -07:00
grpclb/grpc_lb_v1/messages Run hack/update-bazel.sh 2018-06-22 16:22:57 -07:00
grpclog Run hack/update-bazel.sh 2018-06-22 16:22:57 -07:00
health Update etcd client to 3.3.9 2018-10-08 13:34:34 -07:00
internal Run hack/update-bazel.sh 2018-06-22 16:22:57 -07:00
keepalive Run hack/update-bazel.sh 2018-06-22 16:22:57 -07:00
metadata Run hack/update-bazel.sh 2018-06-22 16:22:57 -07:00
naming Run hack/update-bazel.sh 2018-06-22 16:22:57 -07:00
peer Run hack/update-bazel.sh 2018-06-22 16:22:57 -07:00
resolver Run hack/update-bazel.sh 2018-06-22 16:22:57 -07:00
stats Run hack/update-bazel.sh 2018-06-22 16:22:57 -07:00
status Run hack/update-bazel.sh 2018-06-22 16:22:57 -07:00
tap Run hack/update-bazel.sh 2018-06-22 16:22:57 -07:00
transport Run hack/update-bazel.sh 2018-06-22 16:22:57 -07: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 Update etcd client to 3.3.9 2018-10-08 13:34:34 -07: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