Class MyJob
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Volo.Abp.BackgroundJobs
Assembly: Volo.Abp.BackgroundJobs.Tests.dll
Syntax
public class MyJob : BackgroundJob<MyJobArgs>, IBackgroundJob<MyJobArgs>, ISingletonDependency
Constructors
MyJob(ICurrentTenant)
Declaration
public MyJob(ICurrentTenant currentTenant)
Parameters
| Type | Name | Description |
|---|---|---|
| ICurrentTenant | currentTenant |
Properties
ExecutedValues
Declaration
public List<string> ExecutedValues { get; }
Property Value
| Type | Description |
|---|---|
| System.Collections.Generic.List<T><string> |
TenantId
Declaration
public Guid? TenantId { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Guid? |
Methods
Execute(MyJobArgs)
Declaration
public override void Execute(MyJobArgs args)
Parameters
| Type | Name | Description |
|---|---|---|
| MyJobArgs | args |
Overrides
Volo.Abp.BackgroundJobs.BackgroundJob<Volo.Abp.BackgroundJobs.MyJobArgs>.Execute(Volo.Abp.BackgroundJobs.MyJobArgs)