org.gridkit.jvmtool.stacktrace.analytics.ThreadSnapshotCategorizer 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.stacktrace.analytics;
import java.util.List;
import org.gridkit.jvmtool.stacktrace.ThreadSnapshot;
public interface ThreadSnapshotCategorizer {
public List getCategories();
public String categorize(ThreadSnapshot snap);
}