-
- All Superinterfaces:
EventListener
- All Known Implementing Classes:
DefaultMigrationListener
@Internal public interface MigrationListener extends EventListener
A listener forMigrationlifecycles.This is EXPERIMENTAL functionality and subject to change in future jOOQ versions.
- Author:
- Lukas Eder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidmigrationEnd(MigrationContext ctx)Invoked at the end of aMigration.voidmigrationStart(MigrationContext ctx)Invoked at the start of aMigration.voidqueriesEnd(MigrationContext ctx)Invoked at the end of a set ofQueriesthat describe a single version increment.voidqueriesStart(MigrationContext ctx)Invoked at the start of a set ofQueriesthat describe a single version increment.voidqueryEnd(MigrationContext ctx)Invoked at the start of an individualQuery.voidqueryStart(MigrationContext ctx)Invoked at the start of an individualQuery.
-
-
-
Method Detail
-
migrationStart
void migrationStart(MigrationContext ctx)
Invoked at the start of aMigration.
-
migrationEnd
void migrationEnd(MigrationContext ctx)
Invoked at the end of aMigration.
-
queriesStart
void queriesStart(MigrationContext ctx)
Invoked at the start of a set ofQueriesthat describe a single version increment.
-
queriesEnd
void queriesEnd(MigrationContext ctx)
Invoked at the end of a set ofQueriesthat describe a single version increment.
-
queryStart
void queryStart(MigrationContext ctx)
Invoked at the start of an individualQuery.
-
queryEnd
void queryEnd(MigrationContext ctx)
Invoked at the start of an individualQuery.
-
-