Interface ResourcesContainerListener<T>

Type Parameters:
T - The type of the resource that is managed by the container.
All Superinterfaces:
EventListener, ResourcesContainerClearedListener

public interface ResourcesContainerListener<T> extends ResourcesContainerClearedListener
This listener provides callbacks to observe ResourcesContainer instances.
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    default void
    added(String resourceName, T resource)
    This method gets called after the ResourcesContainer.add method was executed.
    default void
    This method gets called after the ResourcesContainer.clear method was executed.
    default void
    removed(String resourceName, T resource)
    This method gets called after the ResourcesContainer.remove method was executed.