Class BufferUsage
- java.lang.Object
-
- org.openqa.selenium.devtools.tracing.model.BufferUsage
-
public class BufferUsage extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description BufferUsage(java.lang.Number percentFull, java.lang.Number eventCount, java.lang.Number value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Number
getEventCount()
An approximate number of events in the trace log.java.lang.Number
getPercentFull()
A number in range [0..1] that indicates the used size of event buffer as a fraction of its total size.java.lang.Number
getValue()
A number in range [0..1] that indicates the used size of event buffer as a fraction of its total size.
-
-
-
Method Detail
-
getPercentFull
public java.lang.Number getPercentFull()
A number in range [0..1] that indicates the used size of event buffer as a fraction of its total size.
-
getEventCount
public java.lang.Number getEventCount()
An approximate number of events in the trace log.
-
getValue
public java.lang.Number getValue()
A number in range [0..1] that indicates the used size of event buffer as a fraction of its total size.
-
-