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

org.gridkit.jvmtool.stacktrace.analytics.PositionalStackMatcher Maven / Gradle / Ivy

There is a newer version: 0.23
Show newest version
package org.gridkit.jvmtool.stacktrace.analytics;

import org.gridkit.jvmtool.stacktrace.ThreadSnapshot;

public interface PositionalStackMatcher {

    /**
     * Find frame in trace matching a certain criteria.
     * Return index of matched frame (which will be greater of equal matchFrom).
     * 
     * @return frame index or -1 if not found
     */
    public int matchNext(ThreadSnapshot snap, int matchFrom);
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy