C# Класс Rock.Jobs.LaunchWorkflow

Наследование: Rock.Web.UI.RockBlock, IJob
Показать файл Открыть проект

Открытые методы

Метод Описание
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.

Защищенные методы

Метод Описание
LaunchTheWorkflow ( string workflowName, IJobExecutionContext context ) : void

Launch the workflow

Описание методов

Execute() публичный Метод

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
Результат void

LaunchTheWorkflow() защищенный Метод

Launch the workflow
protected LaunchTheWorkflow ( string workflowName, IJobExecutionContext context ) : void
workflowName string
context IJobExecutionContext
Результат void

LaunchWorkflow() публичный Метод

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
Результат System