Interface IWorkerExecutor
Interface for the product specific worker model to make progress/status calls into the worker model executor.
Namespace: DNVGL.One.Compute.Core.Worker
Assembly: DNVGL.One.Compute.Core.dll
Syntax
public interface IWorkerExecutor
Methods
View SourceExecuteAsync()
Means for the worker host to trigger the execution of the task work unit. The work unit is passed into the worker executor through the constructor.
Declaration
Task<object> ExecuteAsync()
Returns
Type | Description |
---|---|
Task<System.Object> | The result of the task - which is a product-specific object. |