C# Class Rock.Jobs.LaunchWorkflow

Inheritance: Rock.Web.UI.RockBlock, IJob
Afficher le fichier Open project: NewSpring/Rock

Méthodes publiques

Méthode 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.

Méthodes protégées

Méthode Description
LaunchTheWorkflow ( string workflowName, IJobExecutionContext context ) : void

Launch the workflow

Method Details

Execute() public méthode

Job that will launch a workflow. Called by the IScheduler when a ITrigger fires that is associated with the IJob.
public Execute ( IJobExecutionContext context ) : void
context IJobExecutionContext
Résultat void

LaunchTheWorkflow() protected méthode

Launch the workflow
protected LaunchTheWorkflow ( string workflowName, IJobExecutionContext context ) : void
workflowName string
context IJobExecutionContext
Résultat void

LaunchWorkflow() public méthode

Empty constructor for job initialization

Jobs require a public empty constructor so that the scheduler can instantiate the class whenever it needs.

public LaunchWorkflow ( ) : System
Résultat System