- using Quadarax.Foundation.Core.Business.Processor.Enums;
- namespace Quadarax.Foundation.Core.Business.Processor.Task;
- public interface ITaskIdentifier
- {
- /// <summary>
- /// Primary key of the task.
- /// </summary>
- long Id {get;}
- /// <summary>
- /// Queue type of the task where task is stored or belongs to.
- /// </summary>
- ProcessQueueTypeEnum QueueType {get;}
- }
|