Interface DisposableSupplier<T>

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void dispose​(T instance)
      This method will dispose the provided object created by this Supplier.
      • Methods inherited from interface java.util.function.Supplier

        get
    • Method Detail

      • dispose

        void dispose​(T instance)
        This method will dispose the provided object created by this Supplier.
        Parameters:
        instance - the instance to be disposed.