org.gridkit.jvmtool.spi.parsers.InputStreamSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sjk-stacktrace Show documentation
Show all versions of sjk-stacktrace Show documentation
Thread dumps: capture and encoding
package org.gridkit.jvmtool.spi.parsers;
import java.io.IOException;
import java.io.InputStream;
/**
* A simple interface for {@link InputStream} which can re reopen.
*
* @author Alexey Ragozin ([email protected])
*/
public interface InputStreamSource {
public InputStream open() throws IOException;
}