Interface IBackgroundWorkerManager
Used to manage background workers.
Namespace: Volo.Abp.BackgroundWorkers
Assembly: Volo.Abp.BackgroundWorkers.dll
Syntax
public interface IBackgroundWorkerManager : IRunnable
Methods
Add(IBackgroundWorker)
Adds a new worker. Starts the worker immediately if IBackgroundWorkerManager has started.
Declaration
void Add(IBackgroundWorker worker)
Parameters
Type | Name | Description |
---|---|---|
IBackgroundWorker | worker | The worker. It should be resolved from IOC. |