micro/client/grpc
Vasiliy Tolstov 199ff66bd4
enable cache for build, closes #8 (#12)
* enable cache for build, closes #8
* goimports
* lint fixes

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
2020-08-20 15:23:41 +03:00
..
codec.go enable cache for build, closes #8 (#12) 2020-08-20 15:23:41 +03:00
error.go regen files with never protoc (#6) 2020-08-19 17:47:17 +03:00
grpc_pool_test.go support streams pool for grpc (#1062) 2019-12-27 12:25:58 +00:00
grpc_pool.go grpc pool should check state (#1435) 2020-03-28 08:48:25 +00:00
grpc_test.go regen files with never protoc (#6) 2020-08-19 17:47:17 +03:00
grpc.go grpc: avoid allocations for each message (#11) 2020-08-20 14:45:47 +03:00
message.go regen files with never protoc (#6) 2020-08-19 17:47:17 +03:00
options.go regen files with never protoc (#6) 2020-08-19 17:47:17 +03:00
README.md Further consolidate the libraries 2019-06-03 18:44:43 +01:00
request_test.go Fix the grpc test 2019-06-19 12:34:45 +01:00
request.go regen files with never protoc (#6) 2020-08-19 17:47:17 +03:00
response.go regen files with never protoc (#6) 2020-08-19 17:47:17 +03:00
stream.go regen files with never protoc (#6) 2020-08-19 17:47:17 +03:00

GRPC Client

The grpc client is a micro.Client compatible client.

Overview

The client makes use of the google.golang.org/grpc framework for the underlying communication mechanism.

Usage

Specify the client to your micro service

import (
	"github.com/micro/go-micro"
	"github.com/micro/go-plugins/client/grpc"
)

func main() {
	service := micro.NewService(
		micro.Name("greeter"),
		micro.Client(grpc.NewClient()),
	)
}