Go to file
Vasiliy Tolstov 131916baca not use internal protobuf to transfer error
Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
2020-10-08 13:19:30 +03:00
.github use own fork 2020-09-18 18:27:29 +03:00
.synced add marker flag for sync 2020-09-20 14:20:42 +03:00
codec.go use own fork 2020-09-18 18:27:29 +03:00
error.go not use internal protobuf to transfer error 2020-10-08 13:19:30 +03:00
go.mod break server dependency 2020-09-23 22:13:39 +03:00
go.sum break server dependency 2020-09-23 22:13:39 +03:00
grpc_pool.go use own fork 2020-09-18 18:27:29 +03:00
grpc.go use own fork 2020-09-18 18:27:29 +03:00
message.go use own fork 2020-09-18 18:27:29 +03:00
options.go use own fork 2020-09-18 18:27:29 +03:00
README.md Further consolidate the libraries 2020-09-18 16:32:52 +03:00
request_test.go Fix the grpc test 2020-09-18 16:32:52 +03:00
request.go use own fork 2020-09-18 18:27:29 +03:00
response.go use own fork 2020-09-18 18:27:29 +03:00
stream.go use own fork 2020-09-18 18:27:29 +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()),
	)
}