Package liquibase.command
Interface CleanUpCommandStep
- All Known Implementing Classes:
AbstractDatabaseConnectionCommandStep
,AbstractOutputWriterCommandStep
,AbstractUpdateCommandStep
,DatabaseChangelogCommandStep
,DbUrlConnectionCommandStep
,LockServiceCommandStep
,OutputWriterCommandStep
,ReferenceDatabaseOutputWriterCommandStep
,ReferenceDbUrlConnectionCommandStep
,UpdateCommandStep
,UpdateCountCommandStep
,UpdateCountSqlCommandStep
,UpdateSqlCommandStep
,UpdateToTagCommandStep
,UpdateToTagSqlCommandStep
public interface CleanUpCommandStep
Interface implemented by CommandSteps when they need to execute clean up tasks (such as closing database
connections, flushing files, etc.) after other steps in the pipeline are executed.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
cleanUp
(CommandResultsBuilder resultsBuilder) Method invoked to execute the cleanup action.
-
Method Details
-
cleanUp
Method invoked to execute the cleanup action.- Parameters:
resultsBuilder
- builder used in this pipeline
-