...
Description | Workflow level | Account level |
---|---|---|
Writes key and value into myVault dictionary | ||
Writes key and value into myVault dictionary on the workflow complete event | ||
Reads value from myVault dictionary by specified key | ||
Removes key-value pair from myVault dictionary by specified key | ||
Determines whether the myVault dictionary contains the specified key |
...
This method differs from myVault.set method in “saving into myVault is deferred” condition and will be executed on workflow complete event.
Parameters
key
-the key of the element to set.
...
Please see conditionas for “Workflow complete“ by this link
myVault.setGlobalOnComplete
...
This method differs from myVault.setGlobal method in “saving into Global myVault is deferred” condition and will be executed on workflow complete event.
Parameters
key
-the key of the element to set.
...
Please see conditionas for “Workflow complete“ by this link
myVault.get
Reads value from myVault dictionary by specified key.
...
Please see also Response by this link
dateLastRun
dateLastRun is a global workflow property which can be used in js-code. The property value is a date and time when a workflow was processed successfully last time. If workflow is a new and has not been run before, then property value is NULL.
You can see the value of workflow dateLastRun on the Workflow list page or read this value in js-code.
...
There is a list of cases when dataLastRun is updated:
when processed block was stopped programmaly with fx.stopAfterThisBlock(true).
...
You can know how to start workflow running by this link
You can know how to stop workflow running by this link
session
This page documents session object which is shared between all blocks in the workflow and contains following properties:
...
session.vault is an object of keys-value pairs which was set by myVault.setOnComplete() method and which will be moved into myVault on workflow complete event.
Expand | ||
---|---|---|
| ||
|
...
session.vaultGlobal is an object of keys-value pairs which was set by myVault.setGlobalOnComplete() method and which will be moved into Global myVault on workflow complete event.
Expand | ||
---|---|---|
| ||
|
...