
com.cookingfox.chefling.api.command.ResetContainerCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chefling-di-java Show documentation
Show all versions of chefling-di-java Show documentation
Chefling is a very minimal dependency injection container written in pure Java.
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