open-nomad/vendor/google.golang.org/grpc
Alex Dadgar a8f440bade Vendor go-plugin 2017-07-21 12:11:21 -07:00
..
codes Vendor go-plugin 2017-07-21 12:11:21 -07:00
credentials Vendor go-plugin 2017-07-21 12:11:21 -07:00
grpclb/grpc_lb_v1 Vendor go-plugin 2017-07-21 12:11:21 -07:00
grpclog Vendor go-plugin 2017-07-21 12:11:21 -07:00
health Vendor go-plugin 2017-07-21 12:11:21 -07:00
internal Vendor go-plugin 2017-07-21 12:11:21 -07:00
keepalive Vendor go-plugin 2017-07-21 12:11:21 -07:00
metadata Vendor go-plugin 2017-07-21 12:11:21 -07:00
naming Vendor go-plugin 2017-07-21 12:11:21 -07:00
peer Vendor go-plugin 2017-07-21 12:11:21 -07:00
stats Vendor go-plugin 2017-07-21 12:11:21 -07:00
status Vendor go-plugin 2017-07-21 12:11:21 -07:00
tap Vendor go-plugin 2017-07-21 12:11:21 -07:00
transport Vendor go-plugin 2017-07-21 12:11:21 -07:00
AUTHORS Vendor go-plugin 2017-07-21 12:11:21 -07:00
CONTRIBUTING.md Vendor go-plugin 2017-07-21 12:11:21 -07:00
LICENSE Vendor go-plugin 2017-07-21 12:11:21 -07:00
Makefile Vendor go-plugin 2017-07-21 12:11:21 -07:00
README.md Vendor go-plugin 2017-07-21 12:11:21 -07:00
backoff.go Vendor go-plugin 2017-07-21 12:11:21 -07:00
balancer.go Vendor go-plugin 2017-07-21 12:11:21 -07:00
call.go Vendor go-plugin 2017-07-21 12:11:21 -07:00
clientconn.go Vendor go-plugin 2017-07-21 12:11:21 -07:00
codec.go Vendor go-plugin 2017-07-21 12:11:21 -07:00
codegen.sh Vendor go-plugin 2017-07-21 12:11:21 -07:00
coverage.sh Vendor go-plugin 2017-07-21 12:11:21 -07:00
doc.go Vendor go-plugin 2017-07-21 12:11:21 -07:00
go16.go Vendor go-plugin 2017-07-21 12:11:21 -07:00
go17.go Vendor go-plugin 2017-07-21 12:11:21 -07:00
grpclb.go Vendor go-plugin 2017-07-21 12:11:21 -07:00
interceptor.go Vendor go-plugin 2017-07-21 12:11:21 -07:00
proxy.go Vendor go-plugin 2017-07-21 12:11:21 -07:00
rpc_util.go Vendor go-plugin 2017-07-21 12:11:21 -07:00
server.go Vendor go-plugin 2017-07-21 12:11:21 -07:00
stream.go Vendor go-plugin 2017-07-21 12:11:21 -07:00
trace.go Vendor go-plugin 2017-07-21 12:11:21 -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: 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 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.

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