C# Class Rock.Jobs.CalculateFamilyAnalytics

Inheritance: IJob
Mostrar archivo Open project: NewSpring/Rock

Public Methods

Method Description
CalculateFamilyAnalytics ( ) : System

Empty constructor for job initialization

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

Execute ( IJobExecutionContext context ) : void

Job that will run quick SQL queries on a schedule. Called by the IScheduler when a ITrigger fires that is associated with the IJob.

Private Methods

Method Description
LaunchWorkflow ( System.Guid workflowTypeGuid, Group family ) : void

Launches the workflow.

Method Details

CalculateFamilyAnalytics() public method

Empty constructor for job initialization

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

public CalculateFamilyAnalytics ( ) : System
return System

Execute() public method

Job that will run quick SQL queries on a schedule. Called by the IScheduler when a ITrigger fires that is associated with the IJob.
public Execute ( IJobExecutionContext context ) : void
context IJobExecutionContext
return void