funflow-2.0.0: Make composable workflows
Safe HaskellNone
LanguageHaskell2010

Funflow.Run

Description

This module defines how to run your flows

Synopsis

Documentation

runFlow Source #

Arguments

:: LooseRopeWith RequiredStrands (RequiredCore IO) input output

The flow to run

-> input

The input to evaluate the flow with

-> IO output 

Run a flow with the default configuration

runFlowWithConfig Source #

Arguments

:: RunFlowConfig

The configuration of the flow

-> LooseRopeWith RequiredStrands (RequiredCore IO) input output

The flow to run

-> input

The input to evaluate the flow with

-> IO output 

Run a flow, parsing any required Configurable values from their respective sources. This flow executor includes interpreters for the following tasks:

data RunFlowConfig Source #

Flow execution configuration

Constructors

RunFlowConfig 

Fields