broker

package
v3.65.6 Latest Latest
Warning

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

Go to latest
Published: Aug 10, 2022 License: MIT Imports: 13 Imported by: 0

Documentation

Overview

Package broker implements types used for routing inputs to outputs in non-trivial arrangements, such as fan-out or fan-in models.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func ComplementGenericConfig

func ComplementGenericConfig(target, complement interface{}) error

ComplementGenericConfig copies fields from one generic config to another, but avoids overriding existing values in the destination config.

func GetGenericType

func GetGenericType(boxedConfig interface{}) string

GetGenericType returns the type of a generically parsed config structure.

func OptDynamicFanInSetOnAdd

func OptDynamicFanInSetOnAdd(onAddFunc func(label string)) func(*DynamicFanIn)

OptDynamicFanInSetOnAdd sets the function that is called whenever a dynamic input is added.

func OptDynamicFanInSetOnRemove

func OptDynamicFanInSetOnRemove(onRemoveFunc func(label string)) func(*DynamicFanIn)

OptDynamicFanInSetOnRemove sets the function that is called whenever a dynamic input is removed.

func OptDynamicFanOutSetOnAdd

func OptDynamicFanOutSetOnAdd(onAddFunc func(label string)) func(*DynamicFanOut)

OptDynamicFanOutSetOnAdd sets the function that is called whenever a dynamic output is added.

func OptDynamicFanOutSetOnRemove

func OptDynamicFanOutSetOnRemove(onRemoveFunc func(label string)) func(*DynamicFanOut)

OptDynamicFanOutSetOnRemove sets the function that is called whenever a dynamic output is removed.

func RemoveGenericType

func RemoveGenericType(boxedConfig interface{})

RemoveGenericType removes the type of a generically parsed config structure.

Types

type DynamicFanIn

type DynamicFanIn struct {
	// contains filtered or unexported fields
}

DynamicFanIn is a broker that implements types.Producer and manages a map of inputs to unique string identifiers, routing them through a single message channel. Inputs can be added and removed dynamically as the broker runs.

func NewDynamicFanIn

func NewDynamicFanIn(
	inputs map[string]DynamicInput,
	logger log.Modular,
	stats metrics.Type,
	options ...func(*DynamicFanIn),
) (*DynamicFanIn, error)

NewDynamicFanIn creates a new DynamicFanIn type by providing an initial map map of inputs.

func (*DynamicFanIn) CloseAsync

func (d *DynamicFanIn) CloseAsync()

CloseAsync shuts down the DynamicFanIn broker and stops processing requests.

func (*DynamicFanIn) Connected

func (d *DynamicFanIn) Connected() bool

Connected returns a boolean indicating whether this output is currently connected to its target.

func (*DynamicFanIn) SetInput

func (d *DynamicFanIn) SetInput(ident string, input DynamicInput, timeout time.Duration) error

SetInput attempts to add a new input to the dynamic input broker. If an input already exists with the same identifier it will be closed and removed. If either action takes longer than the timeout period an error will be returned.

A nil input is safe and will simply remove the previous input under the indentifier, if there was one.

func (*DynamicFanIn) TransactionChan

func (d *DynamicFanIn) TransactionChan() <-chan types.Transaction

TransactionChan returns the channel used for consuming messages from this broker.

func (*DynamicFanIn) WaitForClose

func (d *DynamicFanIn) WaitForClose(timeout time.Duration) error

WaitForClose blocks until the DynamicFanIn broker has closed down.

type DynamicFanOut

type DynamicFanOut struct {
	// contains filtered or unexported fields
}

DynamicFanOut is a broker that implements types.Consumer and broadcasts each message out to a dynamic map of outputs.

func NewDynamicFanOut

func NewDynamicFanOut(
	outputs map[string]DynamicOutput,
	logger log.Modular,
	stats metrics.Type,
	options ...func(*DynamicFanOut),
) (*DynamicFanOut, error)

NewDynamicFanOut creates a new DynamicFanOut type by providing outputs.

func (*DynamicFanOut) CloseAsync

func (d *DynamicFanOut) CloseAsync()

CloseAsync shuts down the DynamicFanOut broker and stops processing requests.

func (*DynamicFanOut) Connected

func (d *DynamicFanOut) Connected() bool

Connected returns a boolean indicating whether this output is currently connected to its target.

func (*DynamicFanOut) Consume

func (d *DynamicFanOut) Consume(transactions <-chan types.Transaction) error

Consume assigns a new transactions channel for the broker to read.

func (*DynamicFanOut) MaxInFlight

func (d *DynamicFanOut) MaxInFlight() (int, bool)

MaxInFlight returns the maximum number of in flight messages permitted by the output. This value can be used to determine a sensible value for parent outputs, but should not be relied upon as part of dispatcher logic.

func (*DynamicFanOut) SetOutput

func (d *DynamicFanOut) SetOutput(ident string, output DynamicOutput, timeout time.Duration) error

SetOutput attempts to add a new output to the dynamic output broker. If an output already exists with the same identifier it will be closed and removed. If either action takes longer than the timeout period an error will be returned.

A nil output argument is safe and will simply remove the previous output under the indentifier, if there was one.

TODO: V4 use context here instead.

func (*DynamicFanOut) WaitForClose

func (d *DynamicFanOut) WaitForClose(timeout time.Duration) error

WaitForClose blocks until the DynamicFanOut broker has closed down.

func (*DynamicFanOut) WithMaxInFlight

func (d *DynamicFanOut) WithMaxInFlight(i int) *DynamicFanOut

WithMaxInFlight sets the maximum number of in-flight messages this broker supports. This must be set before calling Consume.

type DynamicInput

type DynamicInput interface {
	types.Producer
	types.Closable
}

DynamicInput is an interface of input types that must be closable.

type DynamicOutput

type DynamicOutput interface {
	types.Output
}

DynamicOutput is an interface of output types that must be closable.

type FanIn

type FanIn struct {
	// contains filtered or unexported fields
}

FanIn is a broker that implements types.Producer, takes an array of inputs and routes them through a single message channel.

func NewFanIn

func NewFanIn(inputs []types.Producer, stats metrics.Type) (*FanIn, error)

NewFanIn creates a new FanIn type by providing inputs.

func (*FanIn) CloseAsync

func (i *FanIn) CloseAsync()

CloseAsync shuts down the FanIn broker and stops processing requests.

func (*FanIn) Connected

func (i *FanIn) Connected() bool

Connected returns a boolean indicating whether this output is currently connected to its target.

func (*FanIn) TransactionChan

func (i *FanIn) TransactionChan() <-chan types.Transaction

TransactionChan returns the channel used for consuming transactions from this broker.

func (*FanIn) WaitForClose

func (i *FanIn) WaitForClose(timeout time.Duration) error

WaitForClose blocks until the FanIn broker has closed down.

type FanOut

type FanOut struct {
	// contains filtered or unexported fields
}

FanOut is a broker that implements types.Consumer and broadcasts each message out to an array of outputs.

func NewFanOut

func NewFanOut(
	outputs []types.Output, logger log.Modular, stats metrics.Type,
) (*FanOut, error)

NewFanOut creates a new FanOut type by providing outputs.

func (*FanOut) CloseAsync

func (o *FanOut) CloseAsync()

CloseAsync shuts down the FanOut broker and stops processing requests.

func (*FanOut) Connected

func (o *FanOut) Connected() bool

Connected returns a boolean indicating whether this output is currently connected to its target.

func (*FanOut) Consume

func (o *FanOut) Consume(transactions <-chan types.Transaction) error

Consume assigns a new transactions channel for the broker to read.

func (*FanOut) MaxInFlight

func (o *FanOut) MaxInFlight() (int, bool)

MaxInFlight returns the maximum number of in flight messages permitted by the output. This value can be used to determine a sensible value for parent outputs, but should not be relied upon as part of dispatcher logic.

func (*FanOut) WaitForClose

func (o *FanOut) WaitForClose(timeout time.Duration) error

WaitForClose blocks until the FanOut broker has closed down.

func (*FanOut) WithMaxInFlight

func (o *FanOut) WithMaxInFlight(i int) *FanOut

WithMaxInFlight sets the maximum number of in-flight messages this broker supports. This must be set before calling Consume.

type FanOutSequential

type FanOutSequential struct {
	// contains filtered or unexported fields
}

FanOutSequential is a broker that implements types.Consumer and broadcasts each message out to an array of outputs, but does so sequentially, only proceeding onto an output when the preceding output has successfully reported message receipt.

func NewFanOutSequential

func NewFanOutSequential(
	outputs []types.Output, logger log.Modular, stats metrics.Type,
) (*FanOutSequential, error)

NewFanOutSequential creates a new FanOutSequential type by providing outputs.

func (*FanOutSequential) CloseAsync

func (o *FanOutSequential) CloseAsync()

CloseAsync shuts down the FanOutSequential broker and stops processing requests.

func (*FanOutSequential) Connected

func (o *FanOutSequential) Connected() bool

Connected returns a boolean indicating whether this output is currently connected to its target.

func (*FanOutSequential) Consume

func (o *FanOutSequential) Consume(transactions <-chan types.Transaction) error

Consume assigns a new transactions channel for the broker to read.

func (*FanOutSequential) MaxInFlight

func (o *FanOutSequential) MaxInFlight() (int, bool)

MaxInFlight returns the maximum number of in flight messages permitted by the output. This value can be used to determine a sensible value for parent outputs, but should not be relied upon as part of dispatcher logic.

func (*FanOutSequential) WaitForClose

func (o *FanOutSequential) WaitForClose(timeout time.Duration) error

WaitForClose blocks until the FanOutSequential broker has closed down.

func (*FanOutSequential) WithMaxInFlight

func (o *FanOutSequential) WithMaxInFlight(i int) *FanOutSequential

WithMaxInFlight sets the maximum number of in-flight messages this broker supports. This must be set before calling Consume.

type Greedy

type Greedy struct {
	// contains filtered or unexported fields
}

Greedy is a broker that implements types.Consumer and sends each message out to a single consumer chosen from an array in round-robin fashion. Consumers that apply backpressure will block all consumers.

func NewGreedy

func NewGreedy(outputs []types.Output) (*Greedy, error)

NewGreedy creates a new Greedy type by providing consumers.

func (*Greedy) CloseAsync

func (g *Greedy) CloseAsync()

CloseAsync shuts down the Greedy broker and stops processing requests.

func (*Greedy) Connected

func (g *Greedy) Connected() bool

Connected returns a boolean indicating whether this output is currently connected to its target.

func (*Greedy) Consume

func (g *Greedy) Consume(ts <-chan types.Transaction) error

Consume assigns a new messages channel for the broker to read.

func (*Greedy) MaxInFlight

func (g *Greedy) MaxInFlight() (m int, ok bool)

MaxInFlight returns the maximum number of in flight messages permitted by the output. This value can be used to determine a sensible value for parent outputs, but should not be relied upon as part of dispatcher logic.

func (*Greedy) WaitForClose

func (g *Greedy) WaitForClose(timeout time.Duration) error

WaitForClose blocks until the Greedy broker has closed down.

type MockType

type MockType struct {
}

MockType implements the broker.Type interface.

func (MockType) CloseAsync

func (m MockType) CloseAsync()

CloseAsync does nothing.

func (MockType) WaitForClose

func (m MockType) WaitForClose(time.Duration) error

WaitForClose does nothing.

type RoundRobin

type RoundRobin struct {
	// contains filtered or unexported fields
}

RoundRobin is a broker that implements types.Consumer and sends each message out to a single consumer chosen from an array in round-robin fashion. Consumers that apply backpressure will block all consumers.

func NewRoundRobin

func NewRoundRobin(outputs []types.Output, stats metrics.Type) (*RoundRobin, error)

NewRoundRobin creates a new RoundRobin type by providing consumers.

func (*RoundRobin) CloseAsync

func (o *RoundRobin) CloseAsync()

CloseAsync shuts down the RoundRobin broker and stops processing requests.

func (*RoundRobin) Connected

func (o *RoundRobin) Connected() bool

Connected returns a boolean indicating whether this output is currently connected to its target.

func (*RoundRobin) Consume

func (o *RoundRobin) Consume(ts <-chan types.Transaction) error

Consume assigns a new messages channel for the broker to read.

func (*RoundRobin) MaxInFlight

func (o *RoundRobin) MaxInFlight() (m int, ok bool)

MaxInFlight returns the maximum number of in flight messages permitted by the output. This value can be used to determine a sensible value for parent outputs, but should not be relied upon as part of dispatcher logic.

func (*RoundRobin) WaitForClose

func (o *RoundRobin) WaitForClose(timeout time.Duration) error

WaitForClose blocks until the RoundRobin broker has closed down.

type Try

type Try struct {
	// contains filtered or unexported fields
}

Try is a broker that implements types.Consumer and attempts to send each message to a single output, but on failure will attempt the next output in the list.

func NewTry

func NewTry(outputs []types.Output, stats metrics.Type) (*Try, error)

NewTry creates a new Try type by providing consumers.

func (*Try) CloseAsync

func (t *Try) CloseAsync()

CloseAsync shuts down the Try broker and stops processing requests.

func (*Try) Connected

func (t *Try) Connected() bool

Connected returns a boolean indicating whether this output is currently connected to its target.

func (*Try) Consume

func (t *Try) Consume(ts <-chan types.Transaction) error

Consume assigns a new messages channel for the broker to read.

func (*Try) MaxInFlight

func (t *Try) MaxInFlight() (int, bool)

MaxInFlight returns the maximum number of in flight messages permitted by the output. This value can be used to determine a sensible value for parent outputs, but should not be relied upon as part of dispatcher logic.

func (*Try) WaitForClose

func (t *Try) WaitForClose(timeout time.Duration) error

WaitForClose blocks until the Try broker has closed down.

func (*Try) WithMaxInFlight

func (t *Try) WithMaxInFlight(i int) *Try

WithMaxInFlight sets the maximum number of in-flight messages this broker supports. This must be set before calling Consume.

func (*Try) WithOutputMetricsPrefix

func (t *Try) WithOutputMetricsPrefix(prefix string) *Try

WithOutputMetricsPrefix changes the prefix used for counter metrics showing errors of an output.

Jump to

Keyboard shortcuts

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