IBackgroundWorker.cs 237 B

12345678910
  1. namespace Abp.Threading.BackgroundWorkers
  2. {
  3. /// <summary>
  4. /// Interface for a worker (thread) that runs on background to perform some tasks.
  5. /// </summary>
  6. public interface IBackgroundWorker : IRunnable
  7. {
  8. }
  9. }