mirror of https://github.com/abpframework/abp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
732 B
29 lines
732 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Volo.Abp.DependencyInjection;
|
|
using Volo.Abp.MultiTenancy;
|
|
|
|
namespace Volo.Abp.BackgroundJobs;
|
|
|
|
public class MyAsyncJob : AsyncBackgroundJob<MyAsyncJobArgs>, ISingletonDependency
|
|
{
|
|
public List<string> ExecutedValues { get; } = new List<string>();
|
|
|
|
public Guid? TenantId { get; set; }
|
|
|
|
private readonly ICurrentTenant _currentTenant;
|
|
|
|
public MyAsyncJob(ICurrentTenant currentTenant)
|
|
{
|
|
_currentTenant = currentTenant;
|
|
}
|
|
|
|
public override Task ExecuteAsync(MyAsyncJobArgs args)
|
|
{
|
|
ExecutedValues.Add(args.Value);
|
|
TenantId = _currentTenant.Id;
|
|
return Task.CompletedTask;
|
|
}
|
|
}
|