minio/vendor/google.golang.org/grpc
2017-06-16 14:47:02 -07:00
..
codes Implement gateway support Google Cloud Storage 2017-06-16 14:47:02 -07:00
credentials Implement gateway support Google Cloud Storage 2017-06-16 14:47:02 -07:00
grpclb/grpc_lb_v1 Implement gateway support Google Cloud Storage 2017-06-16 14:47:02 -07:00
grpclog Implement gateway support Google Cloud Storage 2017-06-16 14:47:02 -07:00
internal Implement gateway support Google Cloud Storage 2017-06-16 14:47:02 -07:00
keepalive Implement gateway support Google Cloud Storage 2017-06-16 14:47:02 -07:00
metadata Implement gateway support Google Cloud Storage 2017-06-16 14:47:02 -07:00
naming Implement gateway support Google Cloud Storage 2017-06-16 14:47:02 -07:00
peer Implement gateway support Google Cloud Storage 2017-06-16 14:47:02 -07:00
stats Implement gateway support Google Cloud Storage 2017-06-16 14:47:02 -07:00
status Implement gateway support Google Cloud Storage 2017-06-16 14:47:02 -07:00
tap Implement gateway support Google Cloud Storage 2017-06-16 14:47:02 -07:00
transport Implement gateway support Google Cloud Storage 2017-06-16 14:47:02 -07:00
backoff.go Implement gateway support Google Cloud Storage 2017-06-16 14:47:02 -07:00
balancer.go Implement gateway support Google Cloud Storage 2017-06-16 14:47:02 -07:00
call.go Implement gateway support Google Cloud Storage 2017-06-16 14:47:02 -07:00
clientconn.go Implement gateway support Google Cloud Storage 2017-06-16 14:47:02 -07:00
codec.go Implement gateway support Google Cloud Storage 2017-06-16 14:47:02 -07:00
codegen.sh Implement gateway support Google Cloud Storage 2017-06-16 14:47:02 -07:00
CONTRIBUTING.md Implement gateway support Google Cloud Storage 2017-06-16 14:47:02 -07:00
coverage.sh Implement gateway support Google Cloud Storage 2017-06-16 14:47:02 -07:00
doc.go Implement gateway support Google Cloud Storage 2017-06-16 14:47:02 -07:00
go16.go Implement gateway support Google Cloud Storage 2017-06-16 14:47:02 -07:00
go17.go Implement gateway support Google Cloud Storage 2017-06-16 14:47:02 -07:00
grpclb.go Implement gateway support Google Cloud Storage 2017-06-16 14:47:02 -07:00
interceptor.go Implement gateway support Google Cloud Storage 2017-06-16 14:47:02 -07:00
LICENSE Implement gateway support Google Cloud Storage 2017-06-16 14:47:02 -07:00
Makefile Implement gateway support Google Cloud Storage 2017-06-16 14:47:02 -07:00
PATENTS Implement gateway support Google Cloud Storage 2017-06-16 14:47:02 -07:00
proxy.go Implement gateway support Google Cloud Storage 2017-06-16 14:47:02 -07:00
README.md Implement gateway support Google Cloud Storage 2017-06-16 14:47:02 -07:00
rpc_util.go Implement gateway support Google Cloud Storage 2017-06-16 14:47:02 -07:00
server.go Implement gateway support Google Cloud Storage 2017-06-16 14:47:02 -07:00
stream.go Implement gateway support Google Cloud Storage 2017-06-16 14:47:02 -07:00
trace.go Implement gateway support Google Cloud Storage 2017-06-16 14:47:02 -07: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