- All Superinterfaces:
EventListener
- All Known Implementing Classes:
DefaultMigrationListener
A listener for
Migration
lifecycles.
This is EXPERIMENTAL functionality and subject to change in future jOOQ versions.
- Author:
- Lukas Eder
-
Method Summary
Modifier and TypeMethodDescriptionvoid
migrationEnd(MigrationContext ctx)
Invoked at the end of aMigration
.void
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 Details
-
migrationStart
Invoked at the start of aMigration
. -
migrationEnd
Invoked at the end of aMigration
. -
queriesStart
Invoked at the start of a set ofQueries
that describe a single version increment. -
queriesEnd
Invoked at the end of a set ofQueries
that describe a single version increment. -
queryStart
Invoked at the start of an individualQuery
. -
queryEnd
Invoked at the start of an individualQuery
.
-