Browse Source

Update EventTimingChangeWorker.cs

pull/29/head
Halil İbrahim Kalkan 6 years ago
parent
commit
2ce0add870
  1. 7
      src/EventHub.BackgroundServices/Events/EventTimingChangeWorker.cs

7
src/EventHub.BackgroundServices/Events/EventTimingChangeWorker.cs

@ -14,7 +14,12 @@ namespace EventHub.Events
{ {
public class EventTimingChangeWorker : AsyncPeriodicBackgroundWorkerBase public class EventTimingChangeWorker : AsyncPeriodicBackgroundWorkerBase
{ {
public EventTimingChangeWorker(AbpAsyncTimer timer, IServiceScopeFactory serviceScopeFactory) : base(timer, serviceScopeFactory) public EventTimingChangeWorker(
AbpAsyncTimer timer,
IServiceScopeFactory serviceScopeFactory
) : base(
timer,
serviceScopeFactory)
{ {
Timer.Period = 60000; //1 minute Timer.Period = 60000; //1 minute
} }

Loading…
Cancel
Save