...
Note | ||
---|---|---|
| ||
The MIM functions cannot be used within global APL scripts, that is in code saved in the APL Code Editor. |
mimGet
Returns the value of a MIM resource available in the workflow.
...
Info | ||
---|---|---|
| ||
|
mimIsNull
Evaluates if a MIM resource is defined. Available to evaluate MIMs of non-object types, such as int
.
...
Parameter | Description |
---|---|
| Name of the agent or workflow owning the MIM resource. |
| Name of the MIM resource to look for. |
Returns |
|
mimPublish
Anchor | ||||
---|---|---|---|---|
|
Publishes a MIM resource. The method call can only be used outside a function block.
...
Note | ||
---|---|---|
| ||
Real-time workflows can only publish MIMs of type global. |
mimSet
Assigns a value to a user defined MIM resource. The function may be called at any time. Note that it is the responsibility of the user to make sure the MIM value is available in accordance with the specified assigned type (refer to the section above, mimPublish).
...
Parameter | Description |
---|---|
| Name of the MIM resource to assign a value |
| Value to assign - must match the published MIM type |
Returns | Nothing |
MIM Example
Info | ||
---|---|---|
| ||
Note that
|
...