Skip to content

etm/weel

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
lib
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

All code in this package is provided under the LGPL-3 license. Please read the file COPYING.

Tested for MRI 2.6, 2.7

Example Process (DSL)

class SimpleWorkflow < WEEL
  handlerwrapper SimpleHandlerWrapper

  endpoint :ep1 => "orf.at"
  data :a => 17

  control flow do
    call :a1, :ep1, parameters: { :a => data.a, :b => 2 } do
      data.a += 3
    end
  end
end

HandlerWrappers are classes that implement communication protocols. Endpoints hold the communication targets and can be reused throughout the control flow. Data elements are control flow scoped variables.

Please check out the "example" directory to see a minimal set of necessary artefacts.

Further Reading

For an evaluation and description of all available control flow statements, see https://arxiv.org/pdf/1003.3330.pdf.

Installation

gem install weel

About

Workflow Exectution Engine Library

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages