org.gridkit.jvmtool.stacktrace.ThreadSnapshot Maven / Gradle / Ivy
package org.gridkit.jvmtool.stacktrace;
import java.lang.Thread.State;
public interface ThreadSnapshot {
public long threadId();
/** may be null
*/
public String threadName();
public long timestamp();
/** may be null
*/
public State threadState();
public StackFrameList stackTrace();
public CounterCollection counters();
}