open-vault/vendor/google.golang.org/grpc
Jeff Mitchell 563f80d39f Bump deps
2017-04-17 11:17:06 -04:00
..
codes Clustering enhancements (#1747) 2016-08-19 11:03:53 -04:00
credentials Bump deps 2017-03-30 20:03:13 -04:00
grpclog Clustering enhancements (#1747) 2016-08-19 11:03:53 -04:00
internal Clustering enhancements (#1747) 2016-08-19 11:03:53 -04:00
keepalive Bump deps 2017-04-17 11:17:06 -04:00
metadata Bump deps 2017-04-17 11:17:06 -04:00
naming Clustering enhancements (#1747) 2016-08-19 11:03:53 -04:00
peer Clustering enhancements (#1747) 2016-08-19 11:03:53 -04:00
stats Bump deps 2017-04-17 11:17:06 -04:00
status Bump deps 2017-04-17 11:17:06 -04:00
tap Bump deps 2016-11-16 18:22:54 -05:00
transport Bump deps 2017-04-17 11:17:06 -04:00
backoff.go Bump deps 2016-11-02 15:34:30 -04:00
balancer.go Bump deps 2016-11-02 15:34:30 -04:00
call.go Bump deps 2017-04-17 11:17:06 -04:00
clientconn.go Bump deps 2017-04-17 11:17:06 -04:00
codec.go Bump deps 2017-04-17 11:17:06 -04:00
codegen.sh Bump deps 2017-01-04 16:47:38 -05:00
CONTRIBUTING.md Clustering enhancements (#1747) 2016-08-19 11:03:53 -04:00
coverage.sh Bump deps 2017-01-04 16:47:38 -05:00
doc.go Clustering enhancements (#1747) 2016-08-19 11:03:53 -04:00
interceptor.go Bump deps 2017-04-17 11:17:06 -04:00
LICENSE Clustering enhancements (#1747) 2016-08-19 11:03:53 -04:00
Makefile Clustering enhancements (#1747) 2016-08-19 11:03:53 -04:00
PATENTS Clustering enhancements (#1747) 2016-08-19 11:03:53 -04:00
README.md Bump deps 2017-04-17 11:17:06 -04:00
rpc_util.go Bump deps 2017-04-17 11:17:06 -04:00
server.go Bump deps 2017-04-17 11:17:06 -04:00
stream.go Bump deps 2017-04-17 11:17:06 -04:00
trace.go Clustering enhancements (#1747) 2016-08-19 11:03:53 -04: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