Documentation ¶
Overview ¶
Code generated by github.com/ecordell/optgen. DO NOT EDIT.
Index ¶
- type Config
- type ConfigOption
- func SetLoadConfigs(loadConfigs []string) ConfigOption
- func WithGRPCServer(gRPCServer util.GRPCServerConfig) ConfigOption
- func WithHTTPGateway(hTTPGateway util.HTTPServerConfig) ConfigOption
- func WithLoadConfigs(loadConfigs string) ConfigOption
- func WithReadOnlyGRPCServer(readOnlyGRPCServer util.GRPCServerConfig) ConfigOption
- func WithReadOnlyHTTPGateway(readOnlyHTTPGateway util.HTTPServerConfig) ConfigOption
- type RunnableTestServer
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct { GRPCServer util.GRPCServerConfig ReadOnlyGRPCServer util.GRPCServerConfig HTTPGateway util.HTTPServerConfig ReadOnlyHTTPGateway util.HTTPServerConfig LoadConfigs []string }
func ConfigWithOptions ¶
func ConfigWithOptions(c *Config, opts ...ConfigOption) *Config
ConfigWithOptions configures an existing Config with the passed in options set
func NewConfigWithOptions ¶
func NewConfigWithOptions(opts ...ConfigOption) *Config
NewConfigWithOptions creates a new Config with the passed in options set
func (*Config) Complete ¶
func (c *Config) Complete() (RunnableTestServer, error)
func (*Config) ToOption ¶
func (c *Config) ToOption() ConfigOption
ToOption returns a new ConfigOption that sets the values from the passed in Config
type ConfigOption ¶
type ConfigOption func(c *Config)
func SetLoadConfigs ¶
func SetLoadConfigs(loadConfigs []string) ConfigOption
SetLoadConfigs returns an option that can set LoadConfigs on a Config
func WithGRPCServer ¶
func WithGRPCServer(gRPCServer util.GRPCServerConfig) ConfigOption
WithGRPCServer returns an option that can set GRPCServer on a Config
func WithHTTPGateway ¶ added in v1.11.0
func WithHTTPGateway(hTTPGateway util.HTTPServerConfig) ConfigOption
WithHTTPGateway returns an option that can set HTTPGateway on a Config
func WithLoadConfigs ¶
func WithLoadConfigs(loadConfigs string) ConfigOption
WithLoadConfigs returns an option that can append LoadConfigss to Config.LoadConfigs
func WithReadOnlyGRPCServer ¶
func WithReadOnlyGRPCServer(readOnlyGRPCServer util.GRPCServerConfig) ConfigOption
WithReadOnlyGRPCServer returns an option that can set ReadOnlyGRPCServer on a Config
func WithReadOnlyHTTPGateway ¶ added in v1.11.0
func WithReadOnlyHTTPGateway(readOnlyHTTPGateway util.HTTPServerConfig) ConfigOption
WithReadOnlyHTTPGateway returns an option that can set ReadOnlyHTTPGateway on a Config
type RunnableTestServer ¶
type RunnableTestServer interface { Run(ctx context.Context) error GRPCDialContext(ctx context.Context, opts ...grpc.DialOption) (*grpc.ClientConn, error) ReadOnlyGRPCDialContext(ctx context.Context, opts ...grpc.DialOption) (*grpc.ClientConn, error) }