IBackgroundJobConfiguration.cs 523 B

1234567891011121314151617181920
  1. using Abp.Configuration.Startup;
  2. namespace Abp.BackgroundJobs
  3. {
  4. /// <summary>
  5. /// Used to configure background job system.
  6. /// </summary>
  7. public interface IBackgroundJobConfiguration
  8. {
  9. /// <summary>
  10. /// Used to enable/disable background job execution.
  11. /// </summary>
  12. bool IsJobExecutionEnabled { get; set; }
  13. /// <summary>
  14. /// Gets the ABP configuration object.
  15. /// </summary>
  16. IAbpStartupConfiguration AbpConfiguration { get; }
  17. }
  18. }