RetentionWorker.cs 739 B

12345678910111213141516171819202122232425
  1. using Quadarax.Foundation.Core.Logging;
  2. using Quadarax.Foundation.Core.Thread;
  3. namespace BO.ProcessServer.Business.Workers
  4. {
  5. public class RetentionWorker : LoopWorker
  6. {
  7. private const string CS_WK_NAME = "Retention";
  8. public RetentionWorker(IWorkerContext context) : base(CS_WK_NAME, context)
  9. {
  10. }
  11. public RetentionWorker(string workerName, IWorkerContext context) : base(workerName, context)
  12. {
  13. }
  14. public RetentionWorker(string workerName) : base(workerName)
  15. {
  16. }
  17. public RetentionWorker(string workerName, IWorkerContext context, ILogger logger = null) : base(workerName, context, logger)
  18. {
  19. }
  20. }
  21. }