Model Functions
The model functions table contains properties of functions declared by the model.
Field Description | Field Name | |
Name. Name of the function. | name | |
Description. Description of the function. | description | |
Input Format. Input format of the function. See format section for details. | inputformat | |
Output Format. Output format of the function. See format section for details. | outputformat | |
Help. Detailed description of variable. | help | |
Group. Variable group, or NULL if variable does not belong to any group. | group | |
Permissions. Permission level in the model context (or a context the relative model is attached to, or an instantiable model's instance context) required to execute the function. | permissions | |
Type. Defines function implementation type. The following types are supported:
| type | |
Implementation. Available if Type is set to Java Code. Source code of Java class that implements the function body, i.e. does something the function is supposed to do. See defining and implementing functions for details. | implementation | |
Expression. Available if Type is set to Expression. An Iotellect Expression to evaluate during function execution. | expression | |
Function Expression Resolution Environment: | ||
---|---|---|
| ||
Function input data table. | ||
0 | ||
Standard variables only. | ||
Query. Available if Type is set to Query. An Iotellect Query to execute during function execution. Query text can refer function parameters using Number of | query | |
Concurrent. Enables execution of function on every call in separate environment. So you can call the same function with different input parameters at the same time. In this case they will work independently in parallel. | concurrent | |
Plugin. ID of a server plugin that defines the model. Required if function implementation should access plugin's internal Java classes. | plugin |
These properties may be accessed through the modelFunctions variable.
Read more about function definition fields under Functions.
Was this page helpful?