emptyservicefx

package
v1.72.1 Latest Latest
Warning

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

Go to latest
Published: Mar 14, 2024 License: MIT Imports: 7 Imported by: 0

Documentation

Overview

Package emptyservicefx provides better integration for Fx for services implementing or calling EmptyService.

Clients

If you are making requests to EmptyService, use the Client function to inject a EmptyService client into your container.

fx.Provide(emptyservicefx.Client("..."))

Servers

If you are implementing EmptyService, provide a emptyserviceserver.Interface into the container and use the Server function.

Given,

func NewEmptyServiceHandler() emptyserviceserver.Interface

You can do the following to have the procedures of EmptyService made available to an Fx application.

fx.Provide(
	NewEmptyServiceHandler,
	emptyservicefx.Server(),
)

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Client

func Client(name string, opts ...thrift.ClientOption) interface{}

Client provides a EmptyService client to an Fx application using the given name for routing.

fx.Provide(
	emptyservicefx.Client("..."),
	newHandler,
)

func Server added in v1.22.0

func Server(opts ...thrift.RegisterOption) interface{}

Server provides procedures for EmptyService to an Fx application. It expects a emptyservicefx.Interface to be present in the container.

fx.Provide(
	func(h *MyEmptyServiceHandler) emptyserviceserver.Interface {
		return h
	},
	emptyservicefx.Server(),
)

Types

type Params added in v1.13.0

type Params struct {
	fx.In

	Provider    yarpc.ClientConfig
	Restriction restriction.Checker `optional:"true"`
}

Params defines the dependencies for the EmptyService client.

type Result added in v1.13.0

type Result struct {
	fx.Out

	Client emptyserviceclient.Interface
}

Result defines the output of the EmptyService client module. It provides a EmptyService client to an Fx application.

type ServerParams added in v1.22.0

type ServerParams struct {
	fx.In

	Handler emptyserviceserver.Interface
}

ServerParams defines the dependencies for the EmptyService server.

type ServerResult added in v1.22.0

type ServerResult struct {
	fx.Out

	Procedures []transport.Procedure `group:"yarpcfx"`
}

ServerResult defines the output of EmptyService server module. It provides the procedures of a EmptyService handler to an Fx application.

The procedures are provided to the "yarpcfx" value group. Dig 1.2 or newer must be used for this feature to work.

Jump to

Keyboard shortcuts

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