org.wildfly.swarm.config.IOSupplier Maven / Gradle / Ivy
The newest version!
package org.wildfly.swarm.config;
import java.lang.FunctionalInterface;
@FunctionalInterface
public interface IOSupplier {
/**
* Constructed instance of IO resource
*
* @return The instance
*/
public IO get();
}