rclone/vendor/google.golang.org/grpc
2017-05-11 15:39:54 +01:00
..
benchmark Switch to using the dep tool and update all the dependencies 2017-05-11 15:39:54 +01:00
codes Switch to using the dep tool and update all the dependencies 2017-05-11 15:39:54 +01:00
credentials Switch to using the dep tool and update all the dependencies 2017-05-11 15:39:54 +01:00
Documentation Switch to using the dep tool and update all the dependencies 2017-05-11 15:39:54 +01:00
examples Switch to using the dep tool and update all the dependencies 2017-05-11 15:39:54 +01:00
grpclb Switch to using the dep tool and update all the dependencies 2017-05-11 15:39:54 +01:00
grpclog Switch to using the dep tool and update all the dependencies 2017-05-11 15:39:54 +01:00
health Switch to using the dep tool and update all the dependencies 2017-05-11 15:39:54 +01:00
internal Update vendor dependencies 2016-11-19 10:05:20 +00:00
interop Switch to using the dep tool and update all the dependencies 2017-05-11 15:39:54 +01:00
keepalive Switch to using the dep tool and update all the dependencies 2017-05-11 15:39:54 +01:00
metadata Switch to using the dep tool and update all the dependencies 2017-05-11 15:39:54 +01:00
naming Update vendor dependencies 2016-11-19 10:05:20 +00:00
peer Update vendor dependencies 2016-11-19 10:05:20 +00:00
reflection Switch to using the dep tool and update all the dependencies 2017-05-11 15:39:54 +01:00
stats Switch to using the dep tool and update all the dependencies 2017-05-11 15:39:54 +01:00
status Switch to using the dep tool and update all the dependencies 2017-05-11 15:39:54 +01:00
stress Switch to using the dep tool and update all the dependencies 2017-05-11 15:39:54 +01:00
tap Update vendor dependencies 2016-11-19 10:05:20 +00:00
test Switch to using the dep tool and update all the dependencies 2017-05-11 15:39:54 +01:00
testdata Switch to using the dep tool and update all the dependencies 2017-05-11 15:39:54 +01:00
transport Switch to using the dep tool and update all the dependencies 2017-05-11 15:39:54 +01:00
.travis.yml Switch to using the dep tool and update all the dependencies 2017-05-11 15:39:54 +01:00
backoff_test.go Switch to using the dep tool and update all the dependencies 2017-05-11 15:39:54 +01:00
backoff.go Update vendor dependencies 2016-11-19 10:05:20 +00:00
balancer_test.go Switch to using the dep tool and update all the dependencies 2017-05-11 15:39:54 +01:00
balancer.go Update vendor dependencies 2016-11-19 10:05:20 +00:00
call_test.go Switch to using the dep tool and update all the dependencies 2017-05-11 15:39:54 +01:00
call.go Switch to using the dep tool and update all the dependencies 2017-05-11 15:39:54 +01:00
clientconn_test.go Switch to using the dep tool and update all the dependencies 2017-05-11 15:39:54 +01:00
clientconn.go Switch to using the dep tool and update all the dependencies 2017-05-11 15:39:54 +01:00
codec_benchmark_test.go Switch to using the dep tool and update all the dependencies 2017-05-11 15:39:54 +01:00
codec_test.go Switch to using the dep tool and update all the dependencies 2017-05-11 15:39:54 +01:00
codec.go Switch to using the dep tool and update all the dependencies 2017-05-11 15:39:54 +01:00
codegen.sh Update vendor directory 2017-01-02 16:12:05 +00:00
CONTRIBUTING.md Update vendor dependencies 2016-11-19 10:05:20 +00:00
coverage.sh Update vendor directory 2017-01-02 16:12:05 +00:00
doc.go Switch to using the dep tool and update all the dependencies 2017-05-11 15:39:54 +01:00
go16.go Switch to using the dep tool and update all the dependencies 2017-05-11 15:39:54 +01:00
go17.go Switch to using the dep tool and update all the dependencies 2017-05-11 15:39:54 +01:00
grpclb.go Switch to using the dep tool and update all the dependencies 2017-05-11 15:39:54 +01:00
interceptor.go Switch to using the dep tool and update all the dependencies 2017-05-11 15:39:54 +01:00
LICENSE Update vendor dependencies 2016-11-19 10:05:20 +00:00
Makefile Update vendor dependencies 2016-11-19 10:05:20 +00:00
PATENTS Update vendor dependencies 2016-11-19 10:05:20 +00:00
proxy_test.go Switch to using the dep tool and update all the dependencies 2017-05-11 15:39:54 +01:00
proxy.go Switch to using the dep tool and update all the dependencies 2017-05-11 15:39:54 +01:00
README.md Switch to using the dep tool and update all the dependencies 2017-05-11 15:39:54 +01:00
rpc_util_test.go Switch to using the dep tool and update all the dependencies 2017-05-11 15:39:54 +01:00
rpc_util.go Switch to using the dep tool and update all the dependencies 2017-05-11 15:39:54 +01:00
server_test.go Switch to using the dep tool and update all the dependencies 2017-05-11 15:39:54 +01:00
server.go Switch to using the dep tool and update all the dependencies 2017-05-11 15:39:54 +01:00
stream.go Switch to using the dep tool and update all the dependencies 2017-05-11 15:39:54 +01:00
trace.go Update vendor dependencies 2016-11-19 10:05:20 +00: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