-
Notifications
You must be signed in to change notification settings - Fork 2
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,
- hold some parameters
- get multiple data-flow inputs
- generate multiple data-flow outputs
The preconditions while you design your own module are,
- input data-flow must be of Data inherited types
- it must generate one or more outputs that should be returned
- 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.