IBackgroundJob.cs 368 B

1234567891011121314
  1. namespace Abp.BackgroundJobs
  2. {
  3. /// <summary>
  4. /// Defines interface of a background job.
  5. /// </summary>
  6. public interface IBackgroundJob<in TArgs>
  7. {
  8. /// <summary>
  9. /// Executes the job with the <see cref="args"/>.
  10. /// </summary>
  11. /// <param name="args">Job arguments.</param>
  12. void Execute(TArgs args);
  13. }
  14. }