open-consul/vendor/google.golang.org/grpc
Kyle Havlovitz 7cd7f4acd7
vendor: pull in latest version of go-discover
2018-05-10 15:40:16 -07:00
..
balancer Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
codes Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
connectivity Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
credentials Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
encoding Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
grpclb/grpc_lb_v1/messages Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
grpclog Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
health Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
internal Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
keepalive Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
metadata Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
naming Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
peer Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
resolver Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
stats Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
status Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
tap Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
transport Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
AUTHORS Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
CONTRIBUTING.md Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
LICENSE vendor: pull in latest version of go-discover 2018-05-10 15:40:16 -07:00
Makefile Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
PATENTS vendor: pull in latest version of go-discover 2018-05-10 15:40:16 -07:00
README.md Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
backoff.go Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
balancer.go Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
balancer_conn_wrappers.go Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
balancer_v1_wrapper.go Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
call.go Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
clientconn.go Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
codec.go Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
codegen.sh Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
doc.go Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
go16.go Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
go17.go Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
grpclb.go Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
grpclb_picker.go Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
grpclb_remote_balancer.go Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
grpclb_util.go Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
interceptor.go Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
picker_wrapper.go Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
pickfirst.go Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
proxy.go Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
resolver_conn_wrapper.go Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
rpc_util.go Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
server.go Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
service_config.go Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
stream.go Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
trace.go Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00
vet.sh Add gRPC health-check #3073 2018-01-04 16:42:30 -05:00

README.md

gRPC-Go

Build Status GoDoc GoReportCard

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: Go 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 -u google.golang.org/grpc

Prerequisites

This requires Go 1.6 or later. Go 1.7 will be required as of the next gRPC-Go release (1.8).

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.

Performance

See the current benchmarks for some of the languages supported in this dashboard.

Status

General Availability Google Cloud Platform Launch Stages.

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