C# Class Quartz.TextToSchedule.TextToScheduleFactory

A factory class to build ITextToSchedule instances.
Show file Open project: amazing-andrew/Quartz.TextToSchedule Class Usage Examples

Public Methods

Method Description
CreateCronParser ( ) : ITextToSchedule

Creates an ITextToSchedule that parses Quartz cron expressions.

CreateEnglishParser ( ) : ITextToSchedule

Creates an ITextToSchedule that parses English.

CreateStandardParser ( ) : ITextToSchedule

Creates the standard parser that parses both English and Cron syntax.

Method Details

CreateCronParser() public method

Creates an ITextToSchedule that parses Quartz cron expressions.
public CreateCronParser ( ) : ITextToSchedule
return ITextToSchedule

CreateEnglishParser() public method

Creates an ITextToSchedule that parses English.
public CreateEnglishParser ( ) : ITextToSchedule
return ITextToSchedule

CreateStandardParser() public method

Creates the standard parser that parses both English and Cron syntax.
public CreateStandardParser ( ) : ITextToSchedule
return ITextToSchedule