Method | Description | |
---|---|---|
Execute ( IJobExecutionContext context ) : void |
Job that will launch a workflow. Called by the IScheduler when a ITrigger fires that is associated with the IJob.
|
|
LaunchWorkflow ( ) : System |
Empty constructor for job initialization Jobs require a public empty constructor so that the scheduler can instantiate the class whenever it needs.
|
Method | Description | |
---|---|---|
LaunchTheWorkflow ( string workflowName, IJobExecutionContext context ) : void |
Launch the workflow
|
public Execute ( IJobExecutionContext context ) : void | ||
context | IJobExecutionContext | |
return | void |
protected LaunchTheWorkflow ( string workflowName, IJobExecutionContext context ) : void | ||
workflowName | string | |
context | IJobExecutionContext | |
return | void |