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

org.infinispan.util.CloseableSupplier Maven / Gradle / Ivy

package org.infinispan.util;

import java.util.function.Supplier;

public interface CloseableSupplier extends Supplier, AutoCloseable {
   @Override
   default void close() {
      // Does nothing by default
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy