TriggerBuilder MembersQuartz.NET API Documentation

The TriggerBuilder type exposes the following members.

Methods

  NameDescription
Public methodBuild
Produce the ITrigger.
Public methodStatic memberCreate
Create a new TriggerBuilder with which to define a specification for a Trigger.
Public methodEndAt
Set the time at which the Trigger will no longer fire - even if it's schedule has remaining repeats.
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Protected methodFinalize
Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
(Inherited from Object.)
Public methodForJob(String)
Set the identity of the Job which should be fired by the produced Trigger - a JobKey will be produced with the given name and default group.
Public methodForJob(IJobDetail)
Set the identity of the Job which should be fired by the produced Trigger, by extracting the JobKey from the given job.
Public methodForJob(JobKey)
Set the identity of the Job which should be fired by the produced Trigger.
Public methodForJob(String, String)
Set the identity of the Job which should be fired by the produced Trigger - a JobKey will be produced with the given name and group.
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodModifiedByCalendar
Set the name of the ICalendar that should be applied to this Trigger's schedule.
Public methodStartAt
Set the time the Trigger should start at - the trigger may or may not fire at this time - depending upon the schedule configured for the Trigger. However the Trigger will NOT fire before this time, regardless of the Trigger's schedule.
Public methodStartNow
Set the time the Trigger should start at to the current moment - the trigger may or may not fire at this time - depending upon the schedule configured for the Trigger.
Public methodToString
Returns a String that represents the current Object.
(Inherited from Object.)
Public methodUsingJobData(JobDataMap)
Add the given key-value pair to the Trigger's JobDataMap.
Public methodUsingJobData(String, Boolean)
Add the given key-value pair to the Trigger's JobDataMap.
Public methodUsingJobData(String, Decimal)
Add the given key-value pair to the Trigger's JobDataMap.
Public methodUsingJobData(String, Double)
Add the given key-value pair to the Trigger's JobDataMap.
Public methodUsingJobData(String, Int32)
Add the given key-value pair to the Trigger's JobDataMap.
Public methodUsingJobData(String, Int64)
Add the given key-value pair to the Trigger's JobDataMap.
Public methodUsingJobData(String, Single)
Add the given key-value pair to the Trigger's JobDataMap.
Public methodUsingJobData(String, String)
Add the given key-value pair to the Trigger's JobDataMap.
Public methodWithDescription
Set the given (human-meaningful) description of the Trigger.
Public methodWithIdentity(String)
Use a TriggerKey with the given name and default group to identify the Trigger.
Public methodWithIdentity(TriggerKey)
Use the given TriggerKey to identify the Trigger.
Public methodWithIdentity(String, String)
Use a TriggerKey with the given name and group to identify the Trigger.
Public methodWithPriority
Set the Trigger's priority. When more than one Trigger have the same fire time, the scheduler will fire the one with the highest priority first.
Public methodWithSchedule
Set the IScheduleBuilder that will be used to define the Trigger's schedule.
Top
Extension Methods

  NameDescription
Public Extension MethodWithCalendarIntervalSchedule Overloaded. (Defined by CalendarIntervalTriggerBuilderExtensions.)
Public Extension MethodWithCalendarIntervalSchedule(Action CalendarIntervalScheduleBuilder )Overloaded. (Defined by CalendarIntervalTriggerBuilderExtensions.)
Public Extension MethodWithCronSchedule(String)Overloaded. (Defined by CronScheduleTriggerBuilderExtensions.)
Public Extension MethodWithCronSchedule(String, Action CronScheduleBuilder )Overloaded. (Defined by CronScheduleTriggerBuilderExtensions.)
Public Extension MethodWithDailyTimeIntervalSchedule Overloaded. (Defined by DailyTimeIntervalTriggerBuilderExtensions.)
Public Extension MethodWithDailyTimeIntervalSchedule(Action DailyTimeIntervalScheduleBuilder )Overloaded. (Defined by DailyTimeIntervalTriggerBuilderExtensions.)
Public Extension MethodWithSimpleSchedule Overloaded. (Defined by SimpleScheduleTriggerBuilderExtensions.)
Public Extension MethodWithSimpleSchedule(Action SimpleScheduleBuilder )Overloaded. (Defined by SimpleScheduleTriggerBuilderExtensions.)
Top
See Also