| 1234567891011121314151617181920 |
- using Abp.Configuration.Startup;
- namespace Abp.BackgroundJobs
- {
- /// <summary>
- /// Used to configure background job system.
- /// </summary>
- public interface IBackgroundJobConfiguration
- {
- /// <summary>
- /// Used to enable/disable background job execution.
- /// </summary>
- bool IsJobExecutionEnabled { get; set; }
- /// <summary>
- /// Gets the ABP configuration object.
- /// </summary>
- IAbpStartupConfiguration AbpConfiguration { get; }
- }
- }
|