Interface IWorkerInstanceProvider
Provides worker types that can handle the specific process type to be managed.
Namespace: Cireson.Core.Interfaces.Services.WorkerProcessing
Assembly: Cireson.Core.Interfaces.dll
Syntax
public interface IWorkerInstanceProvider
Remarks
Admin, 8/24/2017.
Methods
View SourceGetWorkerProcessesInstancesAsync(Type)
Retrieves a list of all worker process types that derive from the specified worker type eg: scheduled, process, etc.
Declaration
Task<IEnumerable<IWorkerProcess>> GetWorkerProcessesInstancesAsync(Type workerProcessType)
Parameters
Type | Name | Description |
---|---|---|
Type | workerProcessType | . |
Returns
Type | Description |
---|---|
Task<IEnumerable<IWorkerProcess>> | An asynchronous result that yields the worker processes instances. |