org.gridkit.jvmtool.event.DecoderFactory 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.event;
import java.io.InputStream;
public interface DecoderFactory {
public boolean canHandle(String magic, Class extends Event> eventType);
public EventReader createEventReader(String magic, InputStream stream, Class extends Event> eventType, ErrorHandler handler);
}