Interface EnvironmentUnloadedListener

All Superinterfaces:
java.util.EventListener
All Known Subinterfaces:
EnvironmentListener
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface
public interface EnvironmentUnloadedListener
extends java.util.EventListener
This listener provides callbacks for when an Environment was unloaded.
See Also:
Environment.load()
  • Method Summary

    Modifier and TypeMethodDescription
    voidunloaded​(Environment environment)
    This method is called after the environment was unloaded.
  • Method Details

    • unloaded

      void unloaded​(Environment environment)
      This method is called after the environment was unloaded.
      Parameters:
      environment - The environment that was loaded.