You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using Admin.Core.Tasks;
|
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
|
using Quartz;
|
|
|
|
|
using Quartz.Spi;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Reflection;
|
|
|
|
|
|
|
|
|
|
namespace Admin.Core.Extensions
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 任务调度 启动服务
|
|
|
|
|
/// </summary>
|
|
|
|
|
public static class JobSetup
|
|
|
|
|
{
|
|
|
|
|
public static void AddJobSetup(this IServiceCollection services)
|
|
|
|
|
{
|
|
|
|
|
if (services == null) throw new ArgumentNullException(nameof(services));
|
|
|
|
|
|
|
|
|
|
//services.AddHostedService<Job1TimedService>();
|
|
|
|
|
//services.AddHostedService<Job2TimedService>();
|
|
|
|
|
|
|
|
|
|
services.AddSingleton<IJobFactory, JobFactory>();
|
|
|
|
|
//services.AddTransient<Job_DataTask_Quartz>();
|
|
|
|
|
//services.AddTransient<Job_Blogs_Quartz>();//Job使用瞬时依赖注入
|
|
|
|
|
//services.AddTransient<Job_OperateLog_Quartz>();//Job使用瞬时依赖注入
|
|
|
|
|
services.AddSingleton<ISchedulerCenter, SchedulerCenterServer>();
|
|
|
|
|
//任务注入
|
|
|
|
|
var baseType = typeof(IJob);
|
|
|
|
|
var path = AppDomain.CurrentDomain.RelativeSearchPath ?? AppDomain.CurrentDomain.BaseDirectory;
|
|
|
|
|
var referencedAssemblies = System.IO.Directory.GetFiles(path, "Admin.Core.Tasks.dll").Select(Assembly.LoadFrom).ToArray();
|
|
|
|
|
var types = referencedAssemblies
|
|
|
|
|
.SelectMany(a => a.DefinedTypes)
|
|
|
|
|
.Select(type => type.AsType())
|
|
|
|
|
.Where(x => x != baseType && baseType.IsAssignableFrom(x)).ToArray();
|
|
|
|
|
var implementTypes = types.Where(x => x.IsClass).ToArray();
|
|
|
|
|
foreach (var implementType in implementTypes)
|
|
|
|
|
{
|
|
|
|
|
services.AddTransient(implementType);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|