DataReceivedParameter

@Serializable
data class DataReceivedParameter(val requestId: String, val timestamp: Double, val dataLength: Int, val encodedDataLength: Int, val data: String? = null)

Fired when data chunk was received over the network.

Constructors

Link copied to clipboard
constructor(requestId: String, timestamp: Double, dataLength: Int, encodedDataLength: Int, data: String? = null)

Properties

Link copied to clipboard
val data: String? = null

Data that was received. (Encoded as a base64 string when passed over JSON)

Link copied to clipboard

Data chunk length.

Link copied to clipboard

Actual bytes received (might be less than dataLength for compressed encodings).

Link copied to clipboard

Request identifier.

Link copied to clipboard

Timestamp.