Class TracingComplete
java.lang.Object
org.openqa.selenium.devtools.v123.tracing.model.TracingComplete
Signals that tracing is stopped and there is no trace buffers pending flush, all data were
delivered via dataCollected events.
-
Constructor Summary
ConstructorsConstructorDescriptionTracingComplete
(Boolean dataLossOccurred, Optional<StreamHandle> stream, Optional<StreamFormat> traceFormat, Optional<StreamCompression> streamCompression) -
Method Summary
Modifier and TypeMethodDescriptionIndicates whether some trace data is known to have been lost, e.g.A handle of the stream that holds resulting trace data.Compression format of returned stream.Trace data format of returned stream.
-
Constructor Details
-
TracingComplete
public TracingComplete(Boolean dataLossOccurred, Optional<StreamHandle> stream, Optional<StreamFormat> traceFormat, Optional<StreamCompression> streamCompression)
-
-
Method Details
-
getDataLossOccurred
Indicates whether some trace data is known to have been lost, e.g. because the trace ring buffer wrapped around. -
getStream
A handle of the stream that holds resulting trace data. -
getTraceFormat
Trace data format of returned stream. -
getStreamCompression
Compression format of returned stream.
-