All Downloads are FREE. Search and download functionalities are using the official Maven repository.

liquibase.command.CleanUpCommandStep Maven / Gradle / Ivy

There is a newer version: 4.29.1
Show newest version
package liquibase.command;

import liquibase.exception.LiquibaseException;

/**
 * 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.
 */
public interface CleanUpCommandStep {

    /**
     * Method invoked to execute the cleanup action.
     * @param resultsBuilder builder used in this pipeline
     */
    void cleanUp(CommandResultsBuilder resultsBuilder);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy