C# Class AK.F1.Timing.Service.Jobs.SessionJobBase

Defines a useful base class for session related Quartz.IJobs. This class is .
Inheritance: IJob
Show file Open project: simoneb/ak-f1-timing

Public Methods

Method Description
Execute ( Quartz.JobExecutionContext context ) : void

Protected Methods

Method Description
CreateReader ( ) : IMessageReader

Creates a live AK.F1.Timing.IMessageReader using the credentials specified in the AK.F1.Timing.Service.Configuration.IServiceConfiguration.

ExecuteCore ( ) : void

When overriden in a derived class; executes the job.

Private Methods

Method Description
ApplyConfiguration ( Quartz.JobDataMap data ) : void

Method Details

CreateReader() protected method

Creates a live AK.F1.Timing.IMessageReader using the credentials specified in the AK.F1.Timing.Service.Configuration.IServiceConfiguration.
protected CreateReader ( ) : IMessageReader
return IMessageReader

Execute() public method

public Execute ( Quartz.JobExecutionContext context ) : void
context Quartz.JobExecutionContext
return void

ExecuteCore() protected abstract method

When overriden in a derived class; executes the job.
protected abstract ExecuteCore ( ) : void
return void