org.carlspring.commons.io.reloading.ReloadableInputStreamHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons-io Show documentation
Show all versions of commons-io Show documentation
A set of common IO classes
package org.carlspring.commons.io.reloading;
import java.io.IOException;
import java.io.InputStream;
/**
* @author mtodorov
*/
public interface ReloadableInputStreamHandler extends Reloading
{
InputStream getInputStream()
throws IOException;
}