Method | Description | |
---|---|---|
AfterPropertiesSet ( ) : void |
Performs post-initialization checks. see IInitializationPostOperations#AfterPropertiesSet .
|
|
GetName ( ) : string |
@see IFlow#GetName .
|
|
GetState ( string stateName ) : IState |
@see IFlow#GetState .
|
|
GetStates ( ) : ICollection |
@see IFlow#GetStates .
|
|
Resume ( string stateName, IFlowExecutor executor ) : FlowExecution |
@see IFlow#Resume .
|
|
SimpleFlow ( string name ) : NLog |
Constructor using a name.
|
|
Start ( IFlowExecutor executor ) : FlowExecution |
@see IFlow#Start .
|
Method | Description | |
---|---|---|
IsFlowContinued ( IState state, FlowExecutionStatus status, StepExecution stepExecution ) : bool |
Tests if flow is continued.
|
|
NextState ( string stateName, FlowExecutionStatus status, StepExecution stepExecution ) : IState |
Returns the next IStep (or null if this is the end).
|
Method | Description | |
---|---|---|
InitializeTransitions ( ) : void |
Analyse the transitions provided and generate all the information needed to execute the flow.
|
public GetState ( string stateName ) : IState | ||
stateName | string | |
return | IState |
protected IsFlowContinued ( IState state, FlowExecutionStatus status, StepExecution stepExecution ) : bool | ||
state | IState | |
status | FlowExecutionStatus | |
stepExecution | StepExecution | |
return | bool |
protected NextState ( string stateName, FlowExecutionStatus status, StepExecution stepExecution ) : IState | ||
stateName | string | |
status | FlowExecutionStatus | |
stepExecution | StepExecution | |
return | IState |
public Resume ( string stateName, IFlowExecutor executor ) : FlowExecution | ||
stateName | string | |
executor | IFlowExecutor | |
return | FlowExecution |
public Start ( IFlowExecutor executor ) : FlowExecution | ||
executor | IFlowExecutor | |
return | FlowExecution |