TracingComplete

@Serializable
data class TracingComplete(val dataLossOccurred: Boolean, val stream: StreamHandle? = null, val traceFormat: StreamFormat? = null, val streamCompression: StreamCompression? = null) : TracingEvent(source)

Signals that tracing is stopped and there is no trace buffers pending flush, all data were delivered via dataCollected events.

Official doc

Constructors

Link copied to clipboard
constructor(dataLossOccurred: Boolean, stream: StreamHandle? = null, traceFormat: StreamFormat? = null, streamCompression: StreamCompression? = null)

Properties

Link copied to clipboard

Indicates whether some trace data is known to have been lost, e.g. because the trace ring buffer wrapped around.

Link copied to clipboard
val stream: StreamHandle? = null

A handle of the stream that holds resulting trace data.

Link copied to clipboard

Compression format of returned stream.

Link copied to clipboard

Trace data format of returned stream.