docker-cli-openbsd/vendor/google.golang.org/grpc
Sebastiaan van Stijn 74ec7a5b2c
bump gRPC to v1.3.0, add genproto, update protobuf
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2017-07-03 17:40:36 -07:00
..
codes Add vendor 2017-04-17 18:12:58 -04:00
credentials bump gRPC to v1.3.0, add genproto, update protobuf 2017-07-03 17:40:36 -07:00
grpclb/grpc_lb_v1 bump gRPC to v1.3.0, add genproto, update protobuf 2017-07-03 17:40:36 -07:00
grpclog Add vendor 2017-04-17 18:12:58 -04:00
health vendor: update moby 2017-06-23 11:34:22 -07:00
internal Add vendor 2017-04-17 18:12:58 -04:00
keepalive bump gRPC to v1.3.0, add genproto, update protobuf 2017-07-03 17:40:36 -07:00
metadata bump gRPC to v1.3.0, add genproto, update protobuf 2017-07-03 17:40:36 -07:00
naming Add vendor 2017-04-17 18:12:58 -04:00
peer Add vendor 2017-04-17 18:12:58 -04:00
stats bump gRPC to v1.3.0, add genproto, update protobuf 2017-07-03 17:40:36 -07:00
status bump gRPC to v1.3.0, add genproto, update protobuf 2017-07-03 17:40:36 -07:00
tap bump gRPC to v1.3.0, add genproto, update protobuf 2017-07-03 17:40:36 -07:00
transport bump gRPC to v1.3.0, add genproto, update protobuf 2017-07-03 17:40:36 -07:00
LICENSE Add vendor 2017-04-17 18:12:58 -04:00
PATENTS Add vendor 2017-04-17 18:12:58 -04:00
README.md bump gRPC to v1.3.0, add genproto, update protobuf 2017-07-03 17:40:36 -07:00
backoff.go Add vendor 2017-04-17 18:12:58 -04:00
balancer.go Add vendor 2017-04-17 18:12:58 -04:00
call.go bump gRPC to v1.3.0, add genproto, update protobuf 2017-07-03 17:40:36 -07:00
clientconn.go bump gRPC to v1.3.0, add genproto, update protobuf 2017-07-03 17:40:36 -07:00
codec.go bump gRPC to v1.3.0, add genproto, update protobuf 2017-07-03 17:40:36 -07:00
doc.go Add vendor 2017-04-17 18:12:58 -04:00
go16.go bump gRPC to v1.3.0, add genproto, update protobuf 2017-07-03 17:40:36 -07:00
go17.go bump gRPC to v1.3.0, add genproto, update protobuf 2017-07-03 17:40:36 -07:00
grpclb.go bump gRPC to v1.3.0, add genproto, update protobuf 2017-07-03 17:40:36 -07:00
interceptor.go bump gRPC to v1.3.0, add genproto, update protobuf 2017-07-03 17:40:36 -07:00
proxy.go bump gRPC to v1.3.0, add genproto, update protobuf 2017-07-03 17:40:36 -07:00
rpc_util.go bump gRPC to v1.3.0, add genproto, update protobuf 2017-07-03 17:40:36 -07:00
server.go bump gRPC to v1.3.0, add genproto, update protobuf 2017-07-03 17:40:36 -07:00
stream.go bump gRPC to v1.3.0, add genproto, update protobuf 2017-07-03 17:40:36 -07:00
trace.go Add vendor 2017-04-17 18:12:58 -04: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