objectflow
objectflow copied to clipboard
Lightweight workflows in .NET for busy developers
Hello any updates to the current 4.6 runtime?
@payoff showed me, in the objectflow-example project, that having `.When(...).Do(...)` take a workflow delegate is kind of confusing. Add overloads for `.Do(Action)` and `.Do(Func)`
Right now, workflows rely on closures for keeping a sort of local data. Unfortunately, this means a workflow object can only be used once. Should create a concept that uses...