k3s/vendor/google.golang.org/grpc
Jeff Grafton aee5f457db update BUILD files 2017-10-15 18:18:13 -07:00
..
codes update BUILD files 2017-10-15 18:18:13 -07:00
credentials update BUILD files 2017-10-15 18:18:13 -07:00
grpclb/grpc_lb_v1 update BUILD files 2017-10-15 18:18:13 -07:00
grpclog update BUILD files 2017-10-15 18:18:13 -07:00
internal update BUILD files 2017-10-15 18:18:13 -07:00
keepalive update BUILD files 2017-10-15 18:18:13 -07:00
metadata update BUILD files 2017-10-15 18:18:13 -07:00
naming update BUILD files 2017-10-15 18:18:13 -07:00
peer update BUILD files 2017-10-15 18:18:13 -07:00
stats update BUILD files 2017-10-15 18:18:13 -07:00
status update BUILD files 2017-10-15 18:18:13 -07:00
tap update BUILD files 2017-10-15 18:18:13 -07:00
transport update BUILD files 2017-10-15 18:18:13 -07:00
.travis.yml Bumped gRPC version to 1.3.0 2017-08-23 09:55:55 -07:00
BUILD update BUILD files 2017-10-15 18:18:13 -07:00
CONTRIBUTING.md Revert "Updated gRPC vendoring to support Keep Alive" 2017-08-22 15:16:52 +02:00
LICENSE Revert "Updated gRPC vendoring to support Keep Alive" 2017-08-22 15:16:52 +02:00
Makefile Update godeps for etcd 3.0.4 2016-08-09 08:51:15 -05:00
PATENTS Revert "Updated gRPC vendoring to support Keep Alive" 2017-08-22 15:16:52 +02:00
README.md Bumped gRPC version to 1.3.0 2017-08-23 09:55:55 -07:00
backoff.go Revert "Updated gRPC vendoring to support Keep Alive" 2017-08-22 15:16:52 +02:00
balancer.go Revert "Updated gRPC vendoring to support Keep Alive" 2017-08-22 15:16:52 +02:00
call.go Bumped gRPC version to 1.3.0 2017-08-23 09:55:55 -07:00
clientconn.go Bumped gRPC version to 1.3.0 2017-08-23 09:55:55 -07:00
codec.go Bumped gRPC version to 1.3.0 2017-08-23 09:55:55 -07:00
codegen.sh Bumped gRPC version to 1.3.0 2017-08-23 09:55:55 -07:00
coverage.sh Bumped gRPC version to 1.3.0 2017-08-23 09:55:55 -07:00
doc.go Revert "Updated gRPC vendoring to support Keep Alive" 2017-08-22 15:16:52 +02:00
go16.go Bumped gRPC version to 1.3.0 2017-08-23 09:55:55 -07:00
go17.go Bumped gRPC version to 1.3.0 2017-08-23 09:55:55 -07:00
grpclb.go Bumped gRPC version to 1.3.0 2017-08-23 09:55:55 -07:00
interceptor.go Bumped gRPC version to 1.3.0 2017-08-23 09:55:55 -07:00
proxy.go Bumped gRPC version to 1.3.0 2017-08-23 09:55:55 -07:00
rpc_util.go Bumped gRPC version to 1.3.0 2017-08-23 09:55:55 -07:00
server.go Bumped gRPC version to 1.3.0 2017-08-23 09:55:55 -07:00
stream.go Bumped gRPC version to 1.3.0 2017-08-23 09:55:55 -07:00
trace.go Revert "Updated gRPC vendoring to support Keep Alive" 2017-08-22 15:16:52 +02: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 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