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

org.dizitart.no2.migration.commands.Command Maven / Gradle / Ivy

package org.dizitart.no2.migration.commands;

import org.dizitart.no2.Nitrite;

/**
 * @author Anindya Chatterjee
 * @since 4.0
 */
public interface Command extends AutoCloseable {
    void execute(Nitrite nitrite);

    default void close() {
        // this is just to make Command a functional interface
        // and make close() not throw checked exception
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy