Interface IMigrationAction
Interface for an object that can take action during a migration.
Namespace: Tableau.Migration.Engine.Actions
Assembly: Tableau.Migration.dll
Syntax
public interface IMigrationAction
Methods
ExecuteAsync(CancellationToken)
Executes the migration action.
Declaration
Task<IMigrationActionResult> ExecuteAsync(CancellationToken cancel)
Parameters
Type | Name | Description |
---|---|---|
CancellationToken | cancel | The cancellation token to obey. |
Returns
Type | Description |
---|---|
Task<IMigrationActionResult> | An awaitable task for the overall action result. |