Engine.Variable.getEngineBooleanArrayVar()

Signature

boolean[] getEngineBooleanArrayVar(String varName)

Domain

ACTION, CONDITION, QUERY

Description

Gets the engine variable as boolean[] of name varName. Engine variable is a in-memory variable share across all the rule sessions for a RuleServiceProvider. Rule condition won't have dependency of this variable i.e. changes of this variable won't retrigger the rule if it is used in the condition. This function returns null if the variable is not set.

Parameters

NameTypeDescription
varNameStringThe name of the variable.

Returns

TypeDescription
boolean[]The value of this variable

Cautions

none