ArchActionCreateCallback(coreCreateCallbackActionViewModel)

new ArchActionCreateCallback(coreCreateCallbackActionViewModel)

The Architect Scripting class for the Create Callback action. Instances of this action should be created by calling ArchFactoryActions#addActionCreateCallback

Parameters:
Name Type Description
coreCreateCallbackActionViewModel Object

( Internal ) an Architect core create callback action view model.

See:

Extends

Members

static, readonly displayTypeName :string

Returns the display type name string 'ArchActionCreateCallback'.

readonly callbackNumber :ArchValuePhoneNumber

Returns the callback number value for this Create Callback instance.

readonly calleeName :ArchValueString

The name of the person to call back.

readonly displayTypeName :string

Returns the display type name string 'ArchBaseAction'.

Overrides:

readonly displayTypeNameArchitect :string

The Architect action type label

Inherited From:

readonly isArchActionCreateCallback :boolean

Returns true indicating that this is an ArchActionCreateCallback instance.

readonly isArchBaseAction :boolean

A property that can be checked to verify the scripting object is a type of ArchBaseAction

Inherited From:

readonly isMenuChoiceAction :boolean

Returns whether or not this action is the action property for a menu choice. For example, the ArchMenuDisconnect#actionDisconnect property on an ArchMenuDisconnect instance.

Inherited From:

readonly isReachable :boolean

Returns whether or not this action is reachable at runtime.

Inherited From:

readonly isSecure :boolean

Returns whether or not this action is secure which means either the action by its very nature is secure or it consumes secure data.

Inherited From:

readonly isUnreachable :boolean

Returns whether or not this action is unreachable at runtime.

Inherited From:

readonly logStr :string

A string suitable for logging that contains information about this action. This will contain the action tracking id, name and scripting type name.

Inherited From:

name :string

The name of the action

Inherited From:

readonly parentFlow :ArchBaseFlow

Returns the parent flow for this action.

Inherited From:

readonly parentMenuChoice :ArchBaseMenuChoice

Returns the parent menu choice if this action is the action for a menu choice. Otherwise, nothing is returned.

Inherited From:

readonly parentState :ArchState

Returns the parent state that contains this action if this action is in a state. Otherwise, nothing is returned.

Inherited From:

readonly parentTask :ArchTask|ArchTaskLoop

Returns the parent task that contains this action if this action is in a task or looping task. Otherwise, nothing is returned.

Inherited From:

readonly queue :ArchValueQueue

The queue for this create callback action.

readonly scriptInputs :ArchNamedValueList

Input values for the create callback action. Note that until a script has been set successfully, this will return undefined.

readonly trackingId :number

The integer tracking identifier for this action. This is the numeric identifier is displayed in the Architect user interface.

Inherited From:

Methods

setScriptByIdAsync(scriptId, callbackFunctionopt) → {Promise.<ArchActionCreateCallback>}

This sets the create callback script with the specified id. Remember this script needs to be a script with the Callback feature set on it to be valid.

Parameters:
Name Type Attributes Description
scriptId string

the identifier of the callback script to set.

callbackFunction callbackArchActionCreateCallback <optional>

a function to call if the callback script is successfully looked up and configured on this action. The first parameter passed to the callback function will be this create callback action instance.

Returns:
Promise.<ArchActionCreateCallback>

setScriptByNameAsync(scriptName, callbackFunctionopt) → {Promise.<ArchActionCreateCallback>}

This sets the create callback script with the specified name. Remember this script needs to be a script with the Callback feature set on it to be valid.

Parameters:
Name Type Attributes Description
scriptName string

the name of the callback script to set.

callbackFunction callbackArchActionCreateCallback <optional>

a function to call if the callback script is successfully looked up and configured on this action. The first parameter passed to the callback function will be this create callback action instance.

Returns:
Promise.<ArchActionCreateCallback>