pl.wendigo.chrome.api.io / ReadResponse

ReadResponse

data class ReadResponse (source)

Represents response frame that is returned from IO#read operation call. Read a chunk of the stream

Link
IO#read method documentation.

See Also

IOOperations.read

Constructors

<init>

ReadResponse(base64Encoded: Boolean? = null, data: String, eof: Boolean)

Represents response frame that is returned from IO#read operation call. Read a chunk of the stream

Properties

base64Encoded

val base64Encoded: Boolean?

Set if the data is base64-encoded

data

val data: String

Data that were read.

eof

val eof: Boolean

Set if the end-of-file condition occured while reading.