1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- using System;
- using System.Threading.Tasks;
- using GxPress.Api.Tools;
- using GxPress.Service.Interface.ElasticSearch;
- using Microsoft.AspNetCore.Authorization;
- using Microsoft.AspNetCore.Mvc;
- using Quartz;
- namespace GxPress.Api.AdminControllers
- {
- [Route("api/admin/job")]
- [ApiController]
- [Authorize]
- public class AdminJobController : ControllerBase
- {
- private readonly ISchedulerFactory _schedulerFactory;
- private readonly IServiceProvider _serviceProvider;
- private IScheduler _scheduler;
- private readonly IElasticSearchService _elasticSearchService;
- public AdminJobController(ISchedulerFactory schedulerFactory, IElasticSearchService elasticSearchService, IServiceProvider serviceProvider)
- {
- this._schedulerFactory = schedulerFactory;
- _elasticSearchService = elasticSearchService;
- _serviceProvider = serviceProvider;
- }
- [HttpGet]
- [AllowAnonymous]
- public async Task<bool> Get()
- {
-
- _scheduler = await _schedulerFactory.GetScheduler();
-
- await _scheduler.Start();
-
- var trigger = TriggerBuilder.Create()
- .WithSimpleSchedule(x => x.WithIntervalInSeconds(60).RepeatForever())
- .Build();
-
- _scheduler.JobFactory = new JobFactory(_serviceProvider, _elasticSearchService);
-
-
- var jobDetail = JobBuilder.Create<MyJob>()
- .WithIdentity("job1", "group1")
- .Build();
-
- await _scheduler.ScheduleJob(jobDetail, trigger);
-
-
- return true;
- }
- }
- }
|