micro/client/grpc
Socket 8282e781e4
grpc pool should check state (#1435)
Co-authored-by: huangshaojie <huangshaojie@corp.netease.com>
2020-03-28 08:48:25 +00:00
..
codec.go client/grpc: remove json-iterator usage (#1387) 2020-03-21 09:40:58 +00:00
error.go grpc client/server fixes (#1355) 2020-03-17 14:27:20 +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 pass micro errors from grpc server to grpc client (#1167) 2020-02-06 10:18:33 +00:00
grpc.go Add ContextWithToken (#1407) 2020-03-25 11:20:53 +00:00
message.go fix import paths for v2 release 2020-01-30 14:44:40 +03:00
options.go fix import paths for v2 release 2020-01-30 14:44:40 +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 fix import paths for v2 release 2020-01-30 14:44:40 +03:00
response.go allocations improvements and tunnel fixes (#1248) 2020-02-24 14:15:20 +00:00
stream.go fix import paths for v2 release 2020-01-30 14:44:40 +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()),
	)
}