All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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();
        
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy