containerd/vendor/google.golang.org/grpc
Lantao Liu 20860f2ecb Use vndr instead of godep.
Signed-off-by: Lantao Liu <lantaol@google.com>
2017-08-04 02:41:26 +00:00
..
codes Use vndr instead of godep. 2017-08-04 02:41:26 +00:00
credentials Use vndr instead of godep. 2017-08-04 02:41:26 +00:00
grpclb/grpc_lb_v1 update containerd to 4ae34cccc5. 2017-06-15 23:14:21 +00:00
grpclog Use vndr instead of godep. 2017-08-04 02:41:26 +00:00
health/grpc_health_v1 Update containerd to 2562aca1a3 and add gomock. 2017-05-31 17:13:56 +00:00
internal Update godep 2017-04-14 19:04:27 -07:00
keepalive update containerd to 4ae34cccc5. 2017-06-15 23:14:21 +00:00
metadata Use vndr instead of godep. 2017-08-04 02:41:26 +00:00
naming Update godep 2017-04-14 19:04:27 -07:00
peer Update godep 2017-04-14 19:04:27 -07:00
stats Use vndr instead of godep. 2017-08-04 02:41:26 +00:00
status update containerd to 4ae34cccc5. 2017-06-15 23:14:21 +00:00
tap Update godep 2017-04-14 19:04:27 -07:00
transport Use vndr instead of godep. 2017-08-04 02:41:26 +00:00
backoff.go Update godep 2017-04-14 19:04:27 -07:00
balancer.go Update godep 2017-04-14 19:04:27 -07:00
call.go update containerd to 4ae34cccc5. 2017-06-15 23:14:21 +00:00
clientconn.go update containerd to 4ae34cccc5. 2017-06-15 23:14:21 +00:00
codec.go update containerd to 4ae34cccc5. 2017-06-15 23:14:21 +00:00
doc.go Use vndr instead of godep. 2017-08-04 02:41:26 +00:00
go16.go update containerd to 4ae34cccc5. 2017-06-15 23:14:21 +00:00
go17.go update containerd to 4ae34cccc5. 2017-06-15 23:14:21 +00:00
grpclb.go update containerd to 4ae34cccc5. 2017-06-15 23:14:21 +00:00
interceptor.go update containerd to 4ae34cccc5. 2017-06-15 23:14:21 +00:00
LICENSE Update godep 2017-04-14 19:04:27 -07:00
PATENTS Update godep 2017-04-14 19:04:27 -07:00
proxy.go update containerd to 4ae34cccc5. 2017-06-15 23:14:21 +00:00
README.md update containerd to 4ae34cccc5. 2017-06-15 23:14:21 +00:00
rpc_util.go update containerd to 4ae34cccc5. 2017-06-15 23:14:21 +00:00
server.go update containerd to 4ae34cccc5. 2017-06-15 23:14:21 +00:00
stream.go update containerd to 4ae34cccc5. 2017-06-15 23:14:21 +00:00
trace.go Update godep 2017-04-14 19:04:27 -07:00

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