grafana/vendor/google.golang.org/grpc
2018-01-24 11:07:57 +01:00
..
balancer migrate from govendor to dep 2018-01-19 09:48:15 +01:00
codes migrate from govendor to dep 2018-01-19 09:48:15 +01:00
connectivity add go-plugin deps to vendor 2017-12-07 16:33:36 +01:00
credentials remove unused code from vendor 2018-01-19 09:54:22 +01:00
encoding remove unused code from vendor 2018-01-19 09:54:22 +01:00
grpclb/grpc_lb_v1/messages remove unused code from vendor 2018-01-19 09:54:22 +01:00
grpclog remove unused code from vendor 2018-01-19 09:54:22 +01:00
health migrate from govendor to dep 2018-01-19 09:48:15 +01:00
internal migrate from govendor to dep 2018-01-19 09:48:15 +01:00
keepalive add go-plugin deps to vendor 2017-12-07 16:33:36 +01:00
metadata add go-plugin deps to vendor 2017-12-07 16:33:36 +01:00
naming migrate from govendor to dep 2018-01-19 09:48:15 +01:00
peer add go-plugin deps to vendor 2017-12-07 16:33:36 +01:00
resolver remove unused code from vendor 2018-01-19 09:54:22 +01:00
stats remove unused code from vendor 2018-01-19 09:54:22 +01:00
status migrate from govendor to dep 2018-01-19 09:48:15 +01:00
tap add go-plugin deps to vendor 2017-12-07 16:33:36 +01:00
transport mysql: pin the mysql dependency 2018-01-24 11:07:57 +01:00
.please-update migrate from govendor to dep 2018-01-19 09:48:15 +01:00
AUTHORS add go-plugin deps to vendor 2017-12-07 16:33:36 +01:00
backoff.go migrate from govendor to dep 2018-01-19 09:48:15 +01:00
balancer_conn_wrappers.go migrate from govendor to dep 2018-01-19 09:48:15 +01:00
balancer_v1_wrapper.go migrate from govendor to dep 2018-01-19 09:48:15 +01:00
balancer.go migrate from govendor to dep 2018-01-19 09:48:15 +01:00
call.go migrate from govendor to dep 2018-01-19 09:48:15 +01:00
clientconn.go migrate from govendor to dep 2018-01-19 09:48:15 +01:00
codec.go migrate from govendor to dep 2018-01-19 09:48:15 +01:00
codegen.sh add go-plugin deps to vendor 2017-12-07 16:33:36 +01:00
CONTRIBUTING.md migrate from govendor to dep 2018-01-19 09:48:15 +01:00
doc.go add go-plugin deps to vendor 2017-12-07 16:33:36 +01:00
go16.go add go-plugin deps to vendor 2017-12-07 16:33:36 +01:00
go17.go migrate from govendor to dep 2018-01-19 09:48:15 +01:00
grpclb_picker.go migrate from govendor to dep 2018-01-19 09:48:15 +01:00
grpclb_remote_balancer.go migrate from govendor to dep 2018-01-19 09:48:15 +01:00
grpclb_util.go migrate from govendor to dep 2018-01-19 09:48:15 +01:00
grpclb.go migrate from govendor to dep 2018-01-19 09:48:15 +01:00
interceptor.go add go-plugin deps to vendor 2017-12-07 16:33:36 +01:00
LICENSE add go-plugin deps to vendor 2017-12-07 16:33:36 +01:00
Makefile migrate from govendor to dep 2018-01-19 09:48:15 +01:00
picker_wrapper.go migrate from govendor to dep 2018-01-19 09:48:15 +01:00
pickfirst.go migrate from govendor to dep 2018-01-19 09:48:15 +01:00
proxy.go add go-plugin deps to vendor 2017-12-07 16:33:36 +01:00
README.md migrate from govendor to dep 2018-01-19 09:48:15 +01:00
resolver_conn_wrapper.go migrate from govendor to dep 2018-01-19 09:48:15 +01:00
rpc_util.go mysql: pin the mysql dependency 2018-01-24 11:07:57 +01:00
server.go migrate from govendor to dep 2018-01-19 09:48:15 +01:00
service_config.go migrate from govendor to dep 2018-01-19 09:48:15 +01:00
stream.go migrate from govendor to dep 2018-01-19 09:48:15 +01:00
trace.go add go-plugin deps to vendor 2017-12-07 16:33:36 +01:00
vet.sh migrate from govendor to dep 2018-01-19 09:48:15 +01:00

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