com.ibm.java.diagnostics.healthcenter.api.methodtrace

Interface MethodTraceEvent



  • public interface MethodTraceEvent
    This class contains information about a single method trace event. This information is available only if you enabled method tracing when you started the monitored application.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method and Description
      long getEndTime()
      Gets the end time of this profile event.
      java.lang.String getName()
      Gets the name of this method.
      long getStartTime()
      Gets the start time of this profile event.
      long getThreadID()
      Gets the thread id that this profile event took place on.
      java.lang.String getThreadName()
      Gets the name of the thread that this profile event took place on.
    • Method Detail

      • getName

        java.lang.String getName()
        Gets the name of this method.
        Returns:
        a String representing the name.
      • getThreadName

        java.lang.String getThreadName()
        Gets the name of the thread that this profile event took place on.
        Returns:
        the thread name.
      • getThreadID

        long getThreadID()
        Gets the thread id that this profile event took place on.
        Returns:
        the thread ID.
      • getStartTime

        long getStartTime()
        Gets the start time of this profile event.
        Returns:
        the time, in milliseconds since epoch, that this event started.
      • getEndTime

        long getEndTime()
        Gets the end time of this profile event.
        Returns:
        the time, in milliseconds since epoch, that this event ended.
© Copyright 2012, 2016 IBM Corporation.