Go to file
Vasiliy Tolstov 46ed1f8fa4 fix for latest micro
Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
2020-11-03 02:15:31 +03:00
.github use own fork 2020-09-20 16:08:45 +03:00
.synced add marker flag for sync 2020-09-20 16:10:02 +03:00
codec.go use own fork 2020-09-20 16:08:45 +03:00
context.go use own fork 2020-09-20 16:08:45 +03:00
error.go not use internal protobuf to transfer error 2020-10-08 13:18:23 +03:00
go.mod fix for latest micro 2020-11-03 02:15:31 +03:00
go.sum fix for latest micro 2020-11-03 02:15:31 +03:00
grpc.go fix for latest micro 2020-11-03 02:15:31 +03:00
handler.go fix for latest micro 2020-11-03 02:15:31 +03:00
options.go use own fork 2020-09-20 16:08:45 +03:00
README.md Further consolidate the libraries 2020-09-20 15:11:08 +03:00
reflection.go add missing reflection file 2020-09-20 16:12:08 +03:00
request.go fixup for never micro 2020-10-16 12:29:28 +03:00
response.go use own fork 2020-09-20 16:08:45 +03:00
server.go use own fork 2020-09-20 16:08:45 +03:00
stream.go use own fork 2020-09-20 16:08:45 +03:00
subscriber.go fix for latest micro 2020-11-03 02:15:31 +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