Skip to content

2. Modules

Rayhan Ferdous edited this page Nov 16, 2017 · 1 revision

Using the Module type, you can create your own workflow modules.

In our modelling, a module is able to,

  1. hold some parameters
  2. get multiple data-flow inputs
  3. generate multiple data-flow outputs

The preconditions while you design your own module are,

  1. input data-flow must be of Data inherited types
  2. it must generate one or more outputs that should be returned
  3. output data-flow must be of Data inherited types

It's not necessary that, a module must have one or more input data-flow like some other models. But it is appreciated. Still our model works where a workflow module can generate some output without any input.

Clone this wiki locally