Categorygithub.com/wacul/ctxflow
modulepackage
0.0.0-20160807083414-d93481597867
Repository: https://github.com/wacul/ctxflow.git
Documentation: pkg.go.dev

# README

Ctxflow

wercker status

Ctxflow is small tools for handling serial/parallel execution with golang's context package.

# Functions

ParallelFunc returns a FlowFunc that processes given FlowFuncs in parallel.
ParallelMaxWorkersFunc returns a FlowFunc that processes given FlowFuncs in parallel but limits gorutines to given workerCount.
SerialFunc returns a FlowFunc that processes given FlowFuncs in serial.

# Type aliases

FlowFunc is a function that receives context and returns error.