org.gridkit.jvmtool.spi.parsers.JsonEventSource 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 org.gridkit.jvmtool.util.json.JsonStreamWriter;
public interface JsonEventSource {
/**
* @return false
if no more data
*/
public boolean readNext(JsonStreamWriter writer) throws IOException;
}