You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* It supports all mathematical functions (i.e. expects a number and returns a number) the back-end implements, e.g. `sqrt(x)`.
1349
+
* For namespaced processes, use for example `process#namespace(x)` - EXPERIMENTAL!
1349
1350
*
1350
1351
* Only available if a builder is specified in the constructor:
1351
1352
* You can refer to output from processes with a leading `#`, e.g. `#loadco1` if the node to refer to has the key `loadco1`.
1352
1353
*
1353
1354
* Only available if a parent node is set via `setNode()`:
1354
-
* Parameters can be accessed simply by name.
1355
+
* Parameters can be accessed simply by name.
1355
1356
* If the first parameter is a (labeled) array, the value for a specific index or label can be accessed by typing the numeric index or textual label with a `$` in front, for example `$B1` for the label `B1` or `$0` for the first element in the array. Numeric labels are not supported.
1356
1357
* You can access subsequent parameters by adding additional `$` at the beginning, e.g. `$$0` to access the first element of an array in the second parameter, `$$$0` for the same in the third parameter etc.
* @param {string} processId - The id of the process to call.
1736
-
* @param {object.<string, *>|Array} args - The arguments as key-value pairs or as array. For objects, they keys must be the parameter names and the values must be the arguments. For arrays, arguments must be specified in the same order as in the corresponding process.
1737
-
* @param {?string} description - An optional description for the process call.
1752
+
* @param {string} processId - The id of the process to call. To access a namespaced process, use the `process@namespace` notation.
1753
+
* @param {object.<string, *>|Array} [args={}] - The arguments as key-value pairs or as array. For objects, they keys must be the parameter names and the values must be the arguments. For arrays, arguments must be specified in the same order as in the corresponding process.
1754
+
* @param {?string} [description=null] - An optional description for the process call.
* @param {string} processId - The id of the process to call.
324
-
* @param {object.<string, *>|Array} args - The arguments as key-value pairs or as array. For objects, they keys must be the parameter names and the values must be the arguments. For arrays, arguments must be specified in the same order as in the corresponding process.
325
-
* @param {?string} description - An optional description for the process call.
345
+
* @param {string} processId - The id of the process to call. To access a namespaced process, use the `process@namespace` notation.
346
+
* @param {object.<string, *>|Array} [args={}] - The arguments as key-value pairs or as array. For objects, they keys must be the parameter names and the values must be the arguments. For arrays, arguments must be specified in the same order as in the corresponding process.
347
+
* @param {?string} [description=null] - An optional description for the process call.a
0 commit comments