Interface IBackgroundJobStore
Assembly: Volo.Abp.BackgroundJobs.dll
Syntax
public interface IBackgroundJobStore
Methods
DeleteAsync(Guid)
Declaration
Task DeleteAsync(Guid jobId)
Parameters
Type |
Name |
Description |
Guid |
jobId |
|
Returns
FindAsync(Guid)
Declaration
Task<BackgroundJobInfo> FindAsync(Guid jobId)
Parameters
Type |
Name |
Description |
Guid |
jobId |
|
Returns
GetWaitingJobsAsync(int)
Declaration
Task<List<BackgroundJobInfo>> GetWaitingJobsAsync(int maxResultCount)
Parameters
Type |
Name |
Description |
int |
maxResultCount |
|
Returns
InsertAsync(BackgroundJobInfo)
Declaration
Task InsertAsync(BackgroundJobInfo jobInfo)
Parameters
Returns
UpdateAsync(BackgroundJobInfo)
Declaration
Task UpdateAsync(BackgroundJobInfo jobInfo)
Parameters
Returns
Extension Methods