kops/vendor/google.golang.org/grpc
Justin Santa Barbara 0143be7c4f autogen: BUILD and BUILD.bazel 2017-10-02 14:27:21 -04:00
..
Documentation Update vendor for k8s 1.8 2017-10-01 13:16:44 -04:00
benchmark autogen: BUILD and BUILD.bazel 2017-10-02 14:27:21 -04:00
codes autogen: BUILD and BUILD.bazel 2017-10-02 14:27:21 -04:00
credentials autogen: BUILD and BUILD.bazel 2017-10-02 14:27:21 -04:00
examples autogen: BUILD and BUILD.bazel 2017-10-02 14:27:21 -04:00
grpclb autogen: BUILD and BUILD.bazel 2017-10-02 14:27:21 -04:00
grpclog autogen: BUILD and BUILD.bazel 2017-10-02 14:27:21 -04:00
health autogen: BUILD and BUILD.bazel 2017-10-02 14:27:21 -04:00
internal autogen: BUILD and BUILD.bazel 2017-10-02 14:27:21 -04:00
interop autogen: BUILD and BUILD.bazel 2017-10-02 14:27:21 -04:00
keepalive autogen: BUILD and BUILD.bazel 2017-10-02 14:27:21 -04:00
metadata autogen: BUILD and BUILD.bazel 2017-10-02 14:27:21 -04:00
naming autogen: BUILD and BUILD.bazel 2017-10-02 14:27:21 -04:00
peer autogen: BUILD and BUILD.bazel 2017-10-02 14:27:21 -04:00
reflection autogen: BUILD and BUILD.bazel 2017-10-02 14:27:21 -04:00
stats autogen: BUILD and BUILD.bazel 2017-10-02 14:27:21 -04:00
status autogen: BUILD and BUILD.bazel 2017-10-02 14:27:21 -04:00
stress autogen: BUILD and BUILD.bazel 2017-10-02 14:27:21 -04:00
tap autogen: BUILD and BUILD.bazel 2017-10-02 14:27:21 -04:00
test autogen: BUILD and BUILD.bazel 2017-10-02 14:27:21 -04:00
testdata Getting deps up to speed for the server 2017-03-28 11:10:21 +02:00
transport autogen: BUILD and BUILD.bazel 2017-10-02 14:27:21 -04:00
.travis.yml Update vendor for k8s 1.8 2017-10-01 13:16:44 -04:00
BUILD.bazel autogen: BUILD and BUILD.bazel 2017-10-02 14:27:21 -04:00
CONTRIBUTING.md Getting deps up to speed for the server 2017-03-28 11:10:21 +02:00
LICENSE Getting deps up to speed for the server 2017-03-28 11:10:21 +02:00
Makefile Getting deps up to speed for the server 2017-03-28 11:10:21 +02:00
PATENTS Getting deps up to speed for the server 2017-03-28 11:10:21 +02:00
README.md Update vendor for k8s 1.8 2017-10-01 13:16:44 -04:00
backoff.go Populate vendor 2017-07-02 13:10:28 -04:00
backoff_test.go Getting deps up to speed for the server 2017-03-28 11:10:21 +02:00
balancer.go Populate vendor 2017-07-02 13:10:28 -04:00
balancer_test.go Getting deps up to speed for the server 2017-03-28 11:10:21 +02:00
call.go Update vendor for k8s 1.8 2017-10-01 13:16:44 -04:00
call_test.go Update vendor for k8s 1.8 2017-10-01 13:16:44 -04:00
clientconn.go Update vendor for k8s 1.8 2017-10-01 13:16:44 -04:00
clientconn_test.go Update vendor for k8s 1.8 2017-10-01 13:16:44 -04:00
codec.go Update vendor for k8s 1.8 2017-10-01 13:16:44 -04:00
codec_benchmark_test.go Update vendor for k8s 1.8 2017-10-01 13:16:44 -04:00
codec_test.go Update vendor for k8s 1.8 2017-10-01 13:16:44 -04:00
codegen.sh Update vendor for k8s 1.8 2017-10-01 13:16:44 -04:00
coverage.sh Update vendor for k8s 1.8 2017-10-01 13:16:44 -04:00
doc.go Getting deps up to speed for the server 2017-03-28 11:10:21 +02:00
go16.go Update vendor for k8s 1.8 2017-10-01 13:16:44 -04:00
go17.go Update vendor for k8s 1.8 2017-10-01 13:16:44 -04:00
grpclb.go Update vendor for k8s 1.8 2017-10-01 13:16:44 -04:00
interceptor.go Update vendor for k8s 1.8 2017-10-01 13:16:44 -04:00
proxy.go Update vendor for k8s 1.8 2017-10-01 13:16:44 -04:00
proxy_test.go Update vendor for k8s 1.8 2017-10-01 13:16:44 -04:00
rpc_util.go Update vendor for k8s 1.8 2017-10-01 13:16:44 -04:00
rpc_util_test.go Update vendor for k8s 1.8 2017-10-01 13:16:44 -04:00
server.go Update vendor for k8s 1.8 2017-10-01 13:16:44 -04:00
server_test.go Update vendor for k8s 1.8 2017-10-01 13:16:44 -04:00
stream.go Update vendor for k8s 1.8 2017-10-01 13:16:44 -04:00
trace.go Getting deps up to speed for the server 2017-03-28 11:10:21 +02: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 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 google.golang.org/grpc

Prerequisites

This requires Go 1.6 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.

Status

GA

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