grpc

package
v1.1.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 1, 2019 License: Apache-2.0 Imports: 5 Imported by: 0

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

Documentation

Overview

Package grpc provides a grpc server Deprecated: use `github.com/micro/go-micro/server/grpc` instead

Index

Constants

This section is empty.

Variables

View Source
var (
	// DefaultMaxMsgSize define maximum message size that server can send
	// or receive.  Default value is 4MB.
	// Deprecated: use `github.com/micro/go-micro/server/grpc` instead
	DefaultMaxMsgSize = grpc.DefaultMaxMsgSize
)

Functions

func AuthTLS added in v0.7.0

func AuthTLS(t *tls.Config) server.Option

AuthTLS should be used to setup a secure authentication using TLS Deprecated: use `github.com/micro/go-micro/server/grpc` instead

func Codec added in v0.6.0

func Codec(contentType string, c encoding.Codec) server.Option

gRPC Codec to be used to encode/decode requests for a given content type Deprecated: use `github.com/micro/go-micro/server/grpc` instead

func MaxMsgSize deprecated added in v0.16.2

func MaxMsgSize(s int) server.Option

MaxMsgSize set the maximum message in bytes the server can receive and send. Default maximum message size is 4 MB.

Deprecated: use `github.com/micro/go-micro/server/grpc` instead

func NewServer deprecated

func NewServer(opts ...server.Option) server.Server

Deprecated: use `github.com/micro/go-micro/server/grpc` instead

func Options added in v0.26.0

func Options(opts ...grpc.ServerOption) server.Option

Options to be used to configure gRPC options Deprecated: use `github.com/micro/go-micro/server/grpc` instead

Types

type Debug

type Debug = grpc.Debug

We use this to wrap any debug handlers so we preserve the signature Debug.{Method} Deprecated: use `github.com/micro/go-micro/server/grpc` instead

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL