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

com.cookingfox.chefling.api.command.ResetContainerCommand Maven / Gradle / Ivy

Go to download

Chefling is a very minimal dependency injection container written in pure Java.

There is a newer version: 7.1.1
Show newest version
package com.cookingfox.chefling.api.command;

import com.cookingfox.chefling.api.CheflingLifecycle;

public interface ResetContainerCommand {

    /**
     * Removes all stored instances and mappings. Use this method to clean up the container in your
     * application's destroy procedure. For every instance that implements
     * {@link CheflingLifecycle}, its {@link CheflingLifecycle#dispose()} method will be called.
     */
    void resetContainer();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy