Show / Hide Table of Contents

Class BackgroundJobRecord

Inheritance
System.Object
Entity
Entity<Guid>
BasicAggregateRoot<Guid>
AggregateRoot<Guid>
BackgroundJobRecord
Implements
IAggregateRoot<Guid>
IEntity<Guid>
IAggregateRoot
IEntity
IGeneratesDomainEvents
IHasExtraProperties
IHasConcurrencyStamp
IHasCreationTime
Inherited Members
AggregateRoot<Guid>.ExtraProperties
AggregateRoot<Guid>.ConcurrencyStamp
AggregateRoot<Guid>.Validate(ValidationContext)
BasicAggregateRoot<Guid>.GetLocalEvents()
BasicAggregateRoot<Guid>.GetDistributedEvents()
BasicAggregateRoot<Guid>.ClearLocalEvents()
BasicAggregateRoot<Guid>.ClearDistributedEvents()
BasicAggregateRoot<Guid>.AddLocalEvent(Object)
BasicAggregateRoot<Guid>.AddDistributedEvent(Object)
Entity<Guid>.Id
Entity<Guid>.GetKeys()
Entity<Guid>.ToString()
Entity.EntityEquals(IEntity)
Namespace: Volo.Abp.BackgroundJobs
Assembly: Volo.Abp.BackgroundJobs.Domain.dll
Syntax
public class BackgroundJobRecord : AggregateRoot<Guid>, IAggregateRoot<Guid>, IEntity<Guid>, IAggregateRoot, IEntity, IGeneratesDomainEvents, IHasExtraProperties, IHasConcurrencyStamp, IHasCreationTime

Constructors

BackgroundJobRecord()

Declaration
protected BackgroundJobRecord()

BackgroundJobRecord(Guid)

Declaration
public BackgroundJobRecord(Guid id)
Parameters
Type Name Description
Guid id

Properties

CreationTime

Creation time of this job.

Declaration
public virtual DateTime CreationTime { get; set; }
Property Value
Type Description
DateTime

IsAbandoned

This is true if this job is continuously failed and will not be executed again.

Declaration
public virtual bool IsAbandoned { get; set; }
Property Value
Type Description
System.Boolean

JobArgs

Job arguments as serialized string.

Declaration
public virtual string JobArgs { get; set; }
Property Value
Type Description
System.String

JobName

Type of the job. It's AssemblyQualifiedName of job type.

Declaration
public virtual string JobName { get; set; }
Property Value
Type Description
System.String

LastTryTime

Last try time of this job.

Declaration
public virtual DateTime? LastTryTime { get; set; }
Property Value
Type Description
System.Nullable<DateTime>

NextTryTime

Next try time of this job.

Declaration
public virtual DateTime NextTryTime { get; set; }
Property Value
Type Description
DateTime

Priority

Priority of this job.

Declaration
public virtual BackgroundJobPriority Priority { get; set; }
Property Value
Type Description
BackgroundJobPriority

TryCount

Try count of this job. A job is re-tried if it fails.

Declaration
public virtual short TryCount { get; set; }
Property Value
Type Description
System.Int16

Implements

IAggregateRoot<TKey>
IEntity<TKey>
IAggregateRoot
IEntity
IGeneratesDomainEvents
IHasExtraProperties
IHasConcurrencyStamp
IHasCreationTime

Extension Methods

AbpObjectExtensions.As<T>(Object)
AbpObjectExtensions.To<T>(Object)
AbpObjectExtensions.IsIn<T>(T, T[])
AbpObjectExtensions.If<T>(T, Boolean, Func<T, T>)
AbpObjectExtensions.If<T>(T, Boolean, Action<T>)
LockExtensions.Locking(Object, Action)
LockExtensions.Locking<T>(T, Action<T>)
LockExtensions.Locking<TResult>(Object, Func<TResult>)
LockExtensions.Locking<T, TResult>(T, Func<T, TResult>)
Back to top Powered by Volosoft