Class TracingComplete
- java.lang.Object
-
- org.openqa.selenium.devtools.tracing.model.TracingComplete
-
public class TracingComplete extends java.lang.ObjectSignals that tracing is stopped and there is no trace buffers pending flush, all data were delivered via dataCollected events.
-
-
Constructor Summary
Constructors Constructor Description TracingComplete(java.lang.Boolean dataLossOccurred, StreamHandle stream, StreamFormat traceFormat, StreamCompression streamCompression)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.BooleangetDataLossOccurred()Indicates whether some trace data is known to have been lost, e.g.StreamHandlegetStream()A handle of the stream that holds resulting trace data.StreamCompressiongetStreamCompression()Compression format of returned stream.StreamFormatgetTraceFormat()Trace data format of returned stream.
-
-
-
Constructor Detail
-
TracingComplete
public TracingComplete(java.lang.Boolean dataLossOccurred, StreamHandle stream, StreamFormat traceFormat, StreamCompression streamCompression)
-
-
Method Detail
-
getDataLossOccurred
public java.lang.Boolean getDataLossOccurred()
Indicates whether some trace data is known to have been lost, e.g. because the trace ring buffer wrapped around.
-
getStream
public StreamHandle getStream()
A handle of the stream that holds resulting trace data.
-
getTraceFormat
public StreamFormat getTraceFormat()
Trace data format of returned stream.
-
getStreamCompression
public StreamCompression getStreamCompression()
Compression format of returned stream.
-
-