-
-
Notifications
You must be signed in to change notification settings - Fork 0
easyextensionsquartzattributes JobTriggerAttribute
BigMakCode edited this page Aug 5, 2024
·
1 revision
Add this attribute to the class inherited from IJob to set the trigger interval.
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph EasyExtensions.Quartz.Attributes
EasyExtensions.Quartz.Attributes.JobTriggerAttribute[[JobTriggerAttribute]]
end
subgraph System
System.Attribute[[Attribute]]
end
System.Attribute --> EasyExtensions.Quartz.Attributes.JobTriggerAttribute
| Type | Name | Methods |
|---|---|---|
TimeSpan |
IntervalJob trigger interval. |
get |
Add this attribute to the class inherited from IJob to set the trigger interval.
Attribute
public JobTriggerAttribute(int days, int hours, int minutes, int seconds)| Type | Name | Description |
|---|---|---|
int |
days | Days. |
int |
hours | Hours. |
int |
minutes | Minutes. |
int |
seconds | Seconds. |
Create a new instance of JobTriggerAttribute .
public TimeSpan Interval { get; }Job trigger interval.
Generated with ModularDoc