18 lines
725 B
C#
18 lines
725 B
C#
using Microsoft.Extensions.DependencyInjection;
|
|
using Nop.Core;
|
|
using Nop.Core.Configuration;
|
|
using Nop.Services.ScheduleTasks;
|
|
using TaskScheduler = Nop.Services.ScheduleTasks.TaskScheduler;
|
|
|
|
namespace Nop.Tests.Nop.Services.Tests.ScheduleTasks;
|
|
|
|
public class TestTaskScheduler : TaskScheduler
|
|
{
|
|
public TestTaskScheduler(AppSettings appSettings, IHttpClientFactory httpClientFactory, IScheduleTaskService scheduleTaskService, IServiceScopeFactory serviceScopeFactory, IStoreContext storeContext) : base(appSettings, httpClientFactory, serviceScopeFactory)
|
|
{
|
|
}
|
|
|
|
public bool IsInit => _taskThreads.Any();
|
|
|
|
public bool IsRun => _taskThreads.Any() && _taskThreads.All(p => p.IsStarted && !p.IsDisposed);
|
|
} |