kops/vendor/google.golang.org/grpc
Justin Santa Barbara 6b6f9db0ef Run make dep-ensure to use dep for vendor directory 2018-02-04 22:08:16 -05:00
..
codes gazelle updates with new bazel version 2017-11-05 17:41:53 -07:00
credentials Run make dep-ensure to use dep for vendor directory 2018-02-04 22:08:16 -05:00
grpclb/grpc_lb_v1 Run make dep-ensure to use dep for vendor directory 2018-02-04 22:08:16 -05:00
grpclog Run make dep-ensure to use dep for vendor directory 2018-02-04 22:08:16 -05:00
internal gazelle updates with new bazel version 2017-11-05 17:41:53 -07:00
keepalive gazelle updates with new bazel version 2017-11-05 17:41:53 -07:00
metadata Run make dep-ensure to use dep for vendor directory 2018-02-04 22:08:16 -05:00
naming gazelle updates with new bazel version 2017-11-05 17:41:53 -07:00
peer gazelle updates with new bazel version 2017-11-05 17:41:53 -07:00
stats Run make dep-ensure to use dep for vendor directory 2018-02-04 22:08:16 -05:00
status Run make dep-ensure to use dep for vendor directory 2018-02-04 22:08:16 -05:00
tap gazelle updates with new bazel version 2017-11-05 17:41:53 -07:00
transport Run make dep-ensure to use dep for vendor directory 2018-02-04 22:08:16 -05:00
.travis.yml Update vendor for k8s 1.8 2017-10-01 13:16:44 -04:00
BUILD.bazel Run make dep-ensure to use dep for vendor directory 2018-02-04 22:08:16 -05:00
CONTRIBUTING.md
LICENSE
Makefile
PATENTS
README.md Update vendor for k8s 1.8 2017-10-01 13:16:44 -04:00
backoff.go
balancer.go
call.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
codec.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
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
rpc_util.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
stream.go Update vendor for k8s 1.8 2017-10-01 13:16:44 -04:00
trace.go

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