ByteRangeRequest

data class ByteRangeRequest(val start: Long, val end: Long? = null)

Describes a byte range when requesting resource data.

Constructors

Link copied to clipboard
fun ByteRangeRequest(start: Long, end: Long? = null)

Types

Link copied to clipboard
object Companion

Functions

Link copied to clipboard
fun serialize(generator: JsonGenerator)

Properties

Link copied to clipboard
val end: Long? = null

The end of the range as a byte offset.

Link copied to clipboard
val start: Long

The start of the range as a byte offset.