Skip to main content
Version: 2025.2

StartProcessConfig

Configuration for a single synchronous process execution.

Methods

getLocalVariables

getLocalVariables(): any

Returns the set local variables for the process execution.

Returns

any

a map with variables (key, value only string) or null if not set.


getName

getName(): string

Returns the set name of the process to be executed.

Returns

string

the name of the process


setLocalVariables

setLocalVariables(pLocalVariables): StartProcessConfig

Sets the local variables that are passed to the process during execution.

Parameters

pLocalVariables
any

A map with variables (key, value only string) that are passed to the process as $local variables. The name of the corresponding variable in the process is then $local.[key]. null if you do not want to pass variables.

Returns

StartProcessConfig

StartProcessConfig


setName

setName(pProcessName): StartProcessConfig

Sets the name of the process to be executed.

Parameters

pProcessName
string | number | boolean

the process name

Returns

StartProcessConfig

StartProcessConfig