Package org.apache.activemq.util
Class ThreadTracker
java.lang.Object
org.apache.activemq.util.ThreadTracker
Debugging tool to track entry points through code, useful to see runtime call paths
To use, add to a method as follows:
public void someMethod() {
ThreadTracker.track("someMethod");
...
}
and at some stage call result to get a LOG
output of the callers with an associated call count-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
ThreadTracker
public ThreadTracker()
-
-
Method Details
-
track
track the stack trace of callers- Parameters:
name- the method being tracked
-
result
public static void result()output the result of stack trace capture to the log
-