Interface IProcessingEngine
Adapter processing engine responsible for the handling and execution of the repository tasks.
Namespace: OpenText.Fusion.AdapterSdk.Api
Assembly: OpenText.Fusion.AdapterSdk.Api.dll
Syntax
public interface IProcessingEngine
Methods
ExecuteAsync(CancellationToken)
Executes the engine.
Declaration
Task ExecuteAsync(CancellationToken cancellationToken)
Parameters
Type | Name | Description |
---|---|---|
CancellationToken | cancellationToken | The cancellation token that can be used by other objects or threads to receive notice of cancellation. |
Returns
Type | Description |
---|---|
Task | Asynchronous void task. |
Remarks
When awaited, this call will block the execution until cancellationToken
is cancelled or a
critical error happens.