pipeline

package
v0.6.3 Latest Latest
Warning

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

Go to latest
Published: Jan 2, 2018 License: MIT Imports: 7 Imported by: 0

Documentation

Overview

Package pipeline contains structures that implement both the Producer and Consumer interfaces. They can be used as extra pipeline components for various utilities.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type ConstructorFunc added in v0.4.6

type ConstructorFunc func() (Type, error)

ConstructorFunc is a common type for constructing a pipeline type.

type Pool added in v0.4.6

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

Pool is a pool of pipelines. It reads from a single source and writes to a single source. The input is decoupled which means failed delivery notification cannot be propagated back up to the original input.

If delivery acknowledgements to the input is required this pool should not be used. Instead, you should configure multiple inputs each with their own pipeline e.g. configure 8 kafka_balanced inputs each with a single processor rather than a single kafka_balanced with a pool of 8 workers.

func NewPool added in v0.4.6

func NewPool(
	constructor ConstructorFunc,
	workers int,
	log log.Modular,
	stats metrics.Type,
) (*Pool, error)

NewPool returns a new pipeline pool that utilized multiple processor threads.

func (*Pool) CloseAsync added in v0.4.6

func (p *Pool) CloseAsync()

CloseAsync shuts down the pipeline and stops processing messages.

func (*Pool) MessageChan added in v0.4.6

func (p *Pool) MessageChan() <-chan types.Message

MessageChan returns the channel used for consuming messages from this pipeline.

func (*Pool) ResponseChan added in v0.4.6

func (p *Pool) ResponseChan() <-chan types.Response

ResponseChan returns the response channel from this pipeline.

func (*Pool) StartListening added in v0.4.6

func (p *Pool) StartListening(responses <-chan types.Response) error

StartListening sets the channel that this pipeline will read responses from.

func (*Pool) StartReceiving added in v0.4.6

func (p *Pool) StartReceiving(msgs <-chan types.Message) error

StartReceiving assigns a messages channel for the pipeline to read.

func (*Pool) WaitForClose added in v0.4.6

func (p *Pool) WaitForClose(timeout time.Duration) error

WaitForClose - Blocks until the StackBuffer output has closed down.

type Processor

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

Processor is a pipeline that supports both Consumer and Producer interfaces. The processor will read from a source, perform some processing, and then either propagate a new message or drop it.

func NewProcessor

func NewProcessor(
	log log.Modular,
	stats metrics.Type,
	msgProcessors ...processor.Type,
) *Processor

NewProcessor returns a new message processing pipeline.

func (*Processor) CloseAsync

func (p *Processor) CloseAsync()

CloseAsync shuts down the pipeline and stops processing messages.

func (*Processor) MessageChan

func (p *Processor) MessageChan() <-chan types.Message

MessageChan returns the channel used for consuming messages from this pipeline.

func (*Processor) ResponseChan

func (p *Processor) ResponseChan() <-chan types.Response

ResponseChan returns the response channel from this pipeline.

func (*Processor) StartListening

func (p *Processor) StartListening(responses <-chan types.Response) error

StartListening sets the channel that this pipeline will read responses from.

func (*Processor) StartReceiving

func (p *Processor) StartReceiving(msgs <-chan types.Message) error

StartReceiving assigns a messages channel for the pipeline to read.

func (*Processor) WaitForClose

func (p *Processor) WaitForClose(timeout time.Duration) error

WaitForClose blocks until the StackBuffer output has closed down.

type Type

type Type interface {
	types.Producer
	types.Consumer
	types.Closable
}

Type is an interface that all pipeline types should implement.

Jump to

Keyboard shortcuts

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