Package com.webmethods.rtl.util.perf
Interface IPerfStats
- All Known Subinterfaces:
IOOBPerfStats
,ISyncPerfStats
public interface IPerfStats
-
Method Summary
Modifier and TypeMethodDescriptionvoid
clear()
clear timing data, but retain structuredouble
The avg timeObject[]
This is the array (unsorted) of children of this perf stats.long
max execution timelong
min execution timeThis is the array (unsorted) of parents of this perf stats.Get a reference to the creator of this IPerfStatsThis will identify this perf statint
total actionslong
Total time
-
Method Details
-
getTotalActions
int getTotalActions()total actions -
getTotalTime
long getTotalTime()Total time -
getAvgTime
double getAvgTime()The avg time -
getMinActionTime
long getMinActionTime()min execution time -
getMaxActionTime
long getMaxActionTime()max execution time -
getPerfSchema
IPerfSchema getPerfSchema()This will identify this perf stat -
getPerfAnalysis
IPerfAnalysis getPerfAnalysis()Get a reference to the creator of this IPerfStats -
getChildrenStats
Object[] getChildrenStats()This is the array (unsorted) of children of this perf stats. May be null -
getParentSchemas
IPerfSchema[] getParentSchemas()This is the array (unsorted) of parents of this perf stats. -
clear
void clear()clear timing data, but retain structure
-