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.
23 lines
866 B
23 lines
866 B
using Volo.Abp.DependencyInjection;
|
|
|
|
namespace Volo.Abp.BackgroundJobs.DemoApp.Shared.Jobs
|
|
{
|
|
public class SampleJobCreator : ITransientDependency
|
|
{
|
|
private readonly IBackgroundJobManager _backgroundJobManager;
|
|
|
|
public SampleJobCreator(IBackgroundJobManager backgroundJobManager)
|
|
{
|
|
_backgroundJobManager = backgroundJobManager;
|
|
}
|
|
|
|
public void CreateJobs()
|
|
{
|
|
_backgroundJobManager.Enqueue(new WriteToConsoleGreenJobArgs { Value = "test 1 (green)" });
|
|
_backgroundJobManager.Enqueue(new WriteToConsoleGreenJobArgs { Value = "test 2 (green)" });
|
|
_backgroundJobManager.Enqueue(new WriteToConsoleYellowJobArgs { Value = "test 1 (yellow)" });
|
|
_backgroundJobManager.Enqueue(new WriteToConsoleYellowJobArgs { Value = "test 2 (yellow)" });
|
|
}
|
|
}
|
|
}
|