ITaskIdentifier.cs 395 B

123456789101112131415
  1. using Quadarax.Foundation.Core.Business.Processor.Enums;
  2. namespace Quadarax.Foundation.Core.Business.Processor.Task;
  3. public interface ITaskIdentifier
  4. {
  5. /// <summary>
  6. /// Primary key of the task.
  7. /// </summary>
  8. long Id {get;}
  9. /// <summary>
  10. /// Queue type of the task where task is stored or belongs to.
  11. /// </summary>
  12. ProcessQueueTypeEnum QueueType {get;}
  13. }