...
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 |
set
Writes key and value into myVault dictionary belonged to the workflow.
...
Expand | ||
---|---|---|
| ||
|
setGlobal
Writes key and value into Global myVault dictionary belonged to the account.
...
Expand | ||
---|---|---|
| ||
|
setOnComplete
Writes key and value into myVault dictionary belonged to the workflow.
This method differs from 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.
...
Expand | ||
---|---|---|
| ||
|
\uD83D\uDCCB Related articles
Please also see session.vault by this link
Please see conditionas for “Workflow complete“ by this link
setGlobalOnComplete
Writes key and value into Global myVault dictionary belonged to the account.
This method differs from 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.
...
Expand | ||
---|---|---|
| ||
|
\uD83D\uDCCB Related articles
Please also see session.vaultGlobal by this link
Please see conditionas for “Workflow complete“ by this link
get
Reads value from myVault dictionary by specified key.
...
Expand | ||
---|---|---|
| ||
|
getGlobal
Reads value from Global myVault dictionary by specified key.
...
Expand | ||
---|---|---|
| ||
|
remove
Removes key-value pair from myVault dictionary by specified key.
...
Expand | ||
---|---|---|
| ||
|
removeGlobal
Removes key-value pair from Global myVault dictionary by specified key.
...
Expand | ||
---|---|---|
| ||
|
contains
Determines whether the myVault dictionary contains the specified key
...
Expand | ||
---|---|---|
| ||
|
containsGlobal
Determines whether Global myVault dictionary contains the 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:
...