C# Class Rock.Jobs.SendCreditCardExpirationNotices

Inheritance: IJob
Mostra file Open project: NewSpring/Rock

Public Methods

Method Description
Execute ( IJobExecutionContext context ) : void

Executes the specified context.

SendCreditCardExpirationNotices ( ) : System

Empty constructor for job initialization

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

Protected Methods

Method Description
StartWorkflow ( WorkflowService workflowService, WorkflowType workflowType, string>.Dictionary attributes, string workflowNameSuffix ) : void

Starts the workflow.

Method Details

Execute() public method

Executes the specified context.
public Execute ( IJobExecutionContext context ) : void
context IJobExecutionContext The context.
return void

SendCreditCardExpirationNotices() 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 SendCreditCardExpirationNotices ( ) : System
return System

StartWorkflow() protected method

Starts the workflow.
protected StartWorkflow ( WorkflowService workflowService, WorkflowType workflowType, string>.Dictionary attributes, string workflowNameSuffix ) : void
workflowService Rock.Model.WorkflowService The workflow service.
workflowType WorkflowType Type of the workflow.
attributes string>.Dictionary The attributes.
workflowNameSuffix string The workflow instance name suffix (the part that is tacked onto the end fo the name to distinguish one instance from another).
return void