package
3.10.13
Repository: https://github.com/micro-community/micro.git
Documentation: pkg.go.dev

# README

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

# Packages

No description provided by the author

# Functions

AuthTLS should be used to setup a secure authentication using TLS.
gRPC Codec to be used to encode/decode requests for a given content type.
GRPCWebOptions to be used to start a gRPC Web server.
GRPCWebPort to be used to start a gRPC Web server.
Listener specifies the net.Listener to use instead of the default.
MaxConn specifies maximum number of max simultaneous connections to server.
Deprecated: use MaxRecvMsgSize or MaxSendMsgSize instead MaxMsgSize set the maximum message in bytes the server can receive and send.
MaxRecvMsgSize set the maximum size of message that server can receive.
MaxSendMsgSize set the maximum size of message that server can send.
No description provided by the author
Options to be used to configure gRPC options.
ServiceFromMethod returns the service /service.Foo/Bar => service.
ServiceMethod converts a gRPC method to a Go method Input: Foo.Bar, /Foo/Bar, /package.Foo/Bar, /a.package.Foo/Bar Output: [Foo, Bar].

# Variables

DefaultMaxRecvMsgSize maximum message that client can receive (16 MB).
DefaultMaxSendMsgSize maximum message that client can send (16 MB).