Interface ISyncMigrationHook<TContext>
Interface for a synchronously callback that is called by the migration engine.
Inherited Members
Namespace: Tableau.Migration.Interop.Hooks
Assembly: Tableau.Migration.dll
Syntax
public interface ISyncMigrationHook<TContext> : IMigrationHook<TContext>
Type Parameters
Name | Description |
---|---|
TContext | The context type. |
Methods
Execute(TContext)
Executes a hook callback.
Declaration
TContext? Execute(TContext ctx)
Parameters
Type | Name | Description |
---|---|---|
TContext | ctx | The input context from the migration engine or previous hook. |
Returns
Type | Description |
---|---|
TContext | The context,
potentially modified to pass on to the next hook or migration engine,
or null to continue passing the same context as |