Class SamplingHeapProfileNode
java.lang.Object
org.openqa.selenium.devtools.v140.heapprofiler.model.SamplingHeapProfileNode
Sampling Heap Profile node. Holds callsite information, allocation statistics and child nodes.
- 
Constructor Summary
ConstructorsConstructorDescriptionSamplingHeapProfileNode(CallFrame callFrame, Number selfSize, Integer id, List<SamplingHeapProfileNode> children)  - 
Method Summary
Modifier and TypeMethodDescriptionFunction location.Child nodes.getId()Node id.Allocations size in bytes for the node excluding children. 
- 
Constructor Details
- 
SamplingHeapProfileNode
public SamplingHeapProfileNode(CallFrame callFrame, Number selfSize, Integer id, List<SamplingHeapProfileNode> children)  
 - 
 - 
Method Details
- 
getCallFrame
Function location. - 
getSelfSize
Allocations size in bytes for the node excluding children. - 
getId
Node id. Ids are unique across all profiles collected between startSampling and stopSampling. - 
getChildren
Child nodes. 
 -