Method | Description | |
---|---|---|
DoExecute ( IScript p_scpScript ) : bool |
Performs the actual script execution. This method is to be overridden by implementors to provide the actual execution logic. |
|
Execute ( IScript p_scpScript ) : bool |
Executes the script.
|
|
Wait ( ) : void |
Blocks until the task set is completed.
|
Method | Description | |
---|---|---|
OnTaskSetCompleted ( |
Raises the TaskSetCompleted event.
|
|
OnTaskSetCompleted ( bool p_booSuccess, string p_strMessage, IScript p_scpExecutedScript ) : void |
Raises the TaskSetCompleted event.
|
|
OnTaskStarted ( EventArgs |
Raises the TaskStarted event.
|
|
OnTaskStarted ( IBackgroundTask p_bgtTask ) : void |
Raises the TaskStarted event.
|
public abstract DoExecute ( IScript p_scpScript ) : bool | ||
p_scpScript | IScript | |
return | bool |
public Execute ( IScript p_scpScript ) : bool | ||
p_scpScript | IScript | |
return | bool |
protected OnTaskSetCompleted ( |
||
e | A |
|
return | void |
protected OnTaskSetCompleted ( bool p_booSuccess, string p_strMessage, IScript p_scpExecutedScript ) : void | ||
p_booSuccess | bool | Whether or not the task set completed successfully. |
p_strMessage | string | The message of the completed task set. |
p_scpExecutedScript | IScript | The script that was executed. |
return | void |
protected OnTaskStarted ( EventArgs |
||
e | EventArgs |
An |
return | void |
protected OnTaskStarted ( IBackgroundTask p_bgtTask ) : void | ||
p_bgtTask | IBackgroundTask | The task that was started. |
return | void |