Package com.webmethods.rtl.util.perf
Interface IPerfEntry
public interface IPerfEntry
Represents an individual entry
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionlong
getEnd()
the timestamp of this entryint
The unique id (per IPerfData set) for this entryint
the parent's ID.int
The schema id (per IPerfData set) for this entrylong
getStart()
the timestamp of this entryGets the thread IDreturns the user databoolean
isValid()
Some entries might not be valid or malformed...void
setComplete
(boolean isComplete) call when actionEnd is completed
-
Field Details
-
NULL_PARENT_ID
static final int NULL_PARENT_ID- See Also:
-
-
Method Details
-
isValid
boolean isValid()Some entries might not be valid or malformed... -
setComplete
void setComplete(boolean isComplete) call when actionEnd is completed- Parameters:
isComplete
-
-
getThreadID
String getThreadID()Gets the thread ID -
getEntryID
int getEntryID()The unique id (per IPerfData set) for this entry -
getSchemaID
int getSchemaID()The schema id (per IPerfData set) for this entry -
getParentSchemaID
int getParentSchemaID()the parent's ID. (-1) if there is no parent -
getStart
long getStart()the timestamp of this entry -
getEnd
long getEnd()the timestamp of this entry -
getUserData
Serializable getUserData()returns the user data
-