Class QuartzBackgroundWorkerBase
Inheritance
object
QuartzBackgroundWorkerBase
Inherited Members
object.GetType()
object.MemberwiseClone()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Volo.Abp.BackgroundWorkers.Quartz
Assembly: Volo.Abp.BackgroundWorkers.Quartz.dll
Syntax
public abstract class QuartzBackgroundWorkerBase : BackgroundWorkerBase, IQuartzBackgroundWorker, IBackgroundWorker, IRunnable, ISingletonDependency, IJob
Constructors
QuartzBackgroundWorkerBase()
Declaration
protected QuartzBackgroundWorkerBase()
Properties
AutoRegister
Declaration
public bool AutoRegister { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
JobDetail
Declaration
public IJobDetail JobDetail { get; set; }
Property Value
| Type | Description |
|---|---|
| Quartz.IJobDetail |
ScheduleJob
Declaration
public Func<IScheduler, Task> ScheduleJob { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Func<T, TResult><Quartz.IScheduler, System.Threading.Tasks.Task> |
Trigger
Declaration
public ITrigger Trigger { get; set; }
Property Value
| Type | Description |
|---|---|
| Quartz.ITrigger |
Methods
Execute(IJobExecutionContext)
Declaration
public abstract Task Execute(IJobExecutionContext context)
Parameters
| Type | Name | Description |
|---|---|---|
| Quartz.IJobExecutionContext | context |
Returns
| Type | Description |
|---|---|
| System.Threading.Tasks.Task |
Implements
Quartz.IJob