Table of Contents

Interface IMigrationInterceptor

Namespace
GroupeIsa.Neos.Migration.Interceptor
Assembly
GroupeIsa.Neos.Migration.Abstractions.dll

Provides the functionalities of a migration interceptor for customizing a migration.

public interface IMigrationInterceptor

Methods

OnCommandsCreatedAsync(CommandsCreatedEventData, ICommandList)

Method called after migration commands have been created. Allows the customization the migration by adding custom commands to the command list.

Task<ICommandList> OnCommandsCreatedAsync(CommandsCreatedEventData data, ICommandList commandList)

Parameters

data CommandsCreatedEventData

Data.

commandList ICommandList

List of the created migration commands.

Returns

Task<ICommandList>

Updated list of created migration commands.