-
- All Superinterfaces:
EventListener
- All Known Implementing Classes:
DefaultMigrationListener
@Internal public interface MigrationListener extends EventListener
A listener forMigration
lifecycles.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 void
migrationEnd(MigrationContext ctx)
Invoked at the end of aMigration
.void
migrationStart(MigrationContext ctx)
Invoked at the start of aMigration
.void
queriesEnd(MigrationContext ctx)
Invoked at the end of a set ofQueries
that describe a single version increment.void
queriesStart(MigrationContext ctx)
Invoked at the start of a set ofQueries
that describe a single version increment.void
queryEnd(MigrationContext ctx)
Invoked at the start of an individualQuery
.void
queryStart(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 ofQueries
that describe a single version increment.
-
queriesEnd
void queriesEnd(MigrationContext ctx)
Invoked at the end of a set ofQueries
that 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
.
-
-