org.gridkit.jvmtool.spi.parsers.JsonEventDumpParser 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;
public interface JsonEventDumpParser {
/**
* May return null
or throw an exception if source is not supported by parser.
*/
public JsonEventSource open(InputStreamSource source) throws Exception;
}