ben-toogood 174e44b846
Deprecate client/selector (#1767)
* client/{grpc,rpc}: depricate selector (wip)

* {client,cmd}: remove client/selector

* deprecate client/selector

* router/static: fix lookup

* config/cmd: add support for legacy static selector flag

* config/cmd: add support for legacy dns selector flag
2020-07-01 17:06:59 +01:00
..
2020-05-11 11:47:59 +01:00
2020-01-30 14:44:40 +03:00
2020-01-30 14:44:40 +03:00
2020-07-01 17:06:59 +01:00
2020-01-30 14:44:40 +03:00
2020-04-03 12:50:50 +01:00
2019-06-03 18:44:43 +01:00
2020-01-30 14:44:40 +03:00
2020-01-30 14:44:40 +03:00
2020-01-30 14:44:40 +03:00
2020-03-17 14:27:20 +03:00

GRPC Server

The grpc server is a micro.Server compatible server.

Overview

The server makes use of the google.golang.org/grpc framework for the underlying server but continues to use micro handler signatures and protoc-gen-micro generated code.

Usage

Specify the server to your micro service

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

func main() {
        service := micro.NewService(
                // This needs to be first as it replaces the underlying server
                // which causes any configuration set before it
                // to be discarded
                micro.Server(grpc.NewServer()),
                micro.Name("greeter"),
        )
}

NOTE: Setting the gRPC server and/or client causes the underlying the server/client to be replaced which causes any previous configuration set on that server/client to be discarded. It is therefore recommended to set gRPC server/client before any other configuration