- using Quadarax.Foundation.Core.Business.Interface;
- namespace Quadarax.Application.QLiberace.Processor.Workers
- {
- internal class WorkerSettings : IWorkerSettings
- {
- public TimeSpan Interval { get; set; }
- public TimeSpan IterationTimeout { get; set; }
- public TimeSpan StartDelay { get; set; }
- public int WorkerCount { get; set; }
- public string WorkerNamePrefix { get; set; } = null!;
- }
- }
|