Class FlowGraphDoNBlock
Hierarchy
- FlowGraphWithOnDoneExecutionBlock
- FlowGraphDoNBlock
Index
Constructors
constructor
Parameters
Optional config: IFlowGraphBlockConfiguration
Returns FlowGraphDoNBlock
Properties
Optional configSearch playground for config
Readonly current CountSearch playground for currentCount
Output connection: The number of times the block has been executed.
data InputsSearch playground for dataInputs
The data inputs of the block.
data OutputsSearch playground for dataOutputs
The data outputs of the block.
Readonly max Number Of ExecutionsSearch playground for maxNumberOfExecutions
Input connection: The maximum number of times the block can be executed.
nameSearch playground for name
The name of the block.
Readonly on DoneSearch playground for onDone
Output connection: The signal that is triggered when the execution of this block is done.
Readonly on StartSearch playground for onStart
Input connection: The input signal of the block.
Readonly resetSearch playground for reset
Input connection: Resets the counter
signal InputsSearch playground for signalInputs
signal OutputsSearch playground for signalOutputs
unique IdSearch playground for uniqueId
A randomly generated GUID for each block.
Methods
_executeSearch playground for _execute
Parameters
context: FlowGraphContext
callingSignal: FlowGraphSignalConnection
Returns void
configureSearch playground for configure
Returns void
get Class NameSearch playground for getClassName
Returns string
get Data InputSearch playground for getDataInput
Parameters
name: string
Returns undefined | FlowGraphDataConnection<any>
register Data InputSearch playground for registerDataInput
Type Parameters
T
Parameters
name: string
className: RichType<T>
Returns FlowGraphDataConnection<T>
register Data OutputSearch playground for registerDataOutput
Type Parameters
T
Parameters
name: string
className: RichType<T>
Returns FlowGraphDataConnection<T>
serializeSearch playground for serialize
Parameters
Optional serializationObject: any
Returns void
Static ParseSearch playground for Parse
Parameters
Optional serializationObject: any
Returns FlowGraphExecutionBlock
A block that executes a branch a set number of times.