moby--moby/vendor/google.golang.org/grpc
Tonis Tiigi ec7b6238c3 Add long-running client session endpoint
Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
2017-06-22 11:22:41 -07:00
..
codes project: use vndr for vendoring 2016-11-03 15:31:46 -07:00
credentials Update grpc to v1.3.0 and bump protobuf bindings. 2017-06-08 14:34:23 +01:00
grpclb/grpc_lb_v1 Update grpc to v1.3.0 and bump protobuf bindings. 2017-06-08 14:34:23 +01:00
grpclog project: use vndr for vendoring 2016-11-03 15:31:46 -07:00
health Add long-running client session endpoint 2017-06-22 11:22:41 -07:00
internal project: use vndr for vendoring 2016-11-03 15:31:46 -07:00
keepalive Update grpc to v1.3.0 and bump protobuf bindings. 2017-06-08 14:34:23 +01:00
metadata Update grpc to v1.3.0 and bump protobuf bindings. 2017-06-08 14:34:23 +01:00
naming project: use vndr for vendoring 2016-11-03 15:31:46 -07:00
peer project: use vndr for vendoring 2016-11-03 15:31:46 -07:00
stats Update grpc to v1.3.0 and bump protobuf bindings. 2017-06-08 14:34:23 +01:00
status Update grpc to v1.3.0 and bump protobuf bindings. 2017-06-08 14:34:23 +01:00
tap Update grpc to v1.3.0 and bump protobuf bindings. 2017-06-08 14:34:23 +01:00
transport Update grpc to v1.3.0 and bump protobuf bindings. 2017-06-08 14:34:23 +01:00
LICENSE project: use vndr for vendoring 2016-11-03 15:31:46 -07:00
PATENTS project: use vndr for vendoring 2016-11-03 15:31:46 -07:00
README.md Update grpc to v1.3.0 and bump protobuf bindings. 2017-06-08 14:34:23 +01:00
backoff.go Vendor swarmkit, containerd, and related dependencies 2017-01-23 17:51:14 -08:00
balancer.go Vendor swarmkit, containerd, and related dependencies 2017-01-23 17:51:14 -08:00
call.go Update grpc to v1.3.0 and bump protobuf bindings. 2017-06-08 14:34:23 +01:00
clientconn.go Update grpc to v1.3.0 and bump protobuf bindings. 2017-06-08 14:34:23 +01:00
codec.go Update grpc to v1.3.0 and bump protobuf bindings. 2017-06-08 14:34:23 +01:00
doc.go project: use vndr for vendoring 2016-11-03 15:31:46 -07:00
go16.go Update grpc to v1.3.0 and bump protobuf bindings. 2017-06-08 14:34:23 +01:00
go17.go Update grpc to v1.3.0 and bump protobuf bindings. 2017-06-08 14:34:23 +01:00
grpclb.go Update grpc to v1.3.0 and bump protobuf bindings. 2017-06-08 14:34:23 +01:00
interceptor.go Update grpc to v1.3.0 and bump protobuf bindings. 2017-06-08 14:34:23 +01:00
proxy.go Update grpc to v1.3.0 and bump protobuf bindings. 2017-06-08 14:34:23 +01:00
rpc_util.go Update grpc to v1.3.0 and bump protobuf bindings. 2017-06-08 14:34:23 +01:00
server.go Update grpc to v1.3.0 and bump protobuf bindings. 2017-06-08 14:34:23 +01:00
stream.go Update grpc to v1.3.0 and bump protobuf bindings. 2017-06-08 14:34:23 +01:00
trace.go project: use vndr for vendoring 2016-11-03 15:31:46 -07: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