Interface IBackgroundJobRepository
Inherited Members
Namespace: Volo.Abp.BackgroundJobs
Assembly: Volo.Abp.BackgroundJobs.Domain.dll
Syntax
public interface IBackgroundJobRepository : IBasicRepository<BackgroundJobRecord, Guid>, IBasicRepository<BackgroundJobRecord>, IReadOnlyBasicRepository<BackgroundJobRecord, Guid>, IReadOnlyBasicRepository<BackgroundJobRecord>, IRepository
Methods
GetWaitingListAsync(string, int, CancellationToken)
Declaration
Task<List<BackgroundJobRecord>> GetWaitingListAsync(string applicationName, int maxResultCount, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| string | applicationName | |
| int | maxResultCount | |
| CancellationToken | cancellationToken |
Returns
| Type | Description |
|---|---|
| Task<List<BackgroundJobRecord>> |