Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

TestTaskScheduler.cs

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.All(p => p.IsStarted && !p.IsDisposed);
}