namespace Abp.Threading.BackgroundWorkers
{
///
/// Used to manage background workers.
///
public interface IBackgroundWorkerManager : IRunnable
{
///
/// Adds a new worker. Starts the worker immediately if has started.
///
///
/// The worker. It should be resolved from IOC.
///
void Add(IBackgroundWorker worker);
}
}