ktor-server-core / io.ktor.routing / RoutingApplicationResponse

RoutingApplicationResponse

class RoutingApplicationResponse : ApplicationResponse

Represents an application response being handled by Routing

Constructors

<init>

RoutingApplicationResponse(call: RoutingApplicationCall, pipeline: ApplicationSendPipeline, response: ApplicationResponse)

Represents an application response being handled by Routing

Properties

call

val call: RoutingApplicationCall

ApplicationCall instance this ApplicationResponse is attached to

pipeline

val pipeline: ApplicationSendPipeline

Pipeline for sending content

Extension Properties

responseType

var ApplicationResponse.responseType: KType?

Type of the response object that was passed in respond function. Can be useful for custom serializations.

Extension Functions

cacheControl

fun ApplicationResponse.cacheControl(value: CacheControl): Unit

Append response Cache-Control HTTP header value

contentRange

fun ApplicationResponse.contentRange(range: LongRange?, fullLength: Long? = null, unit: RangeUnits): Unit
fun ApplicationResponse.contentRange(range: LongRange?, fullLength: Long? = null, unit: String = RangeUnits.Bytes.unitToken): Unit

Append response Content-Range header with specified range and fullLength

etag

fun ApplicationResponse.etag(value: String): Unit

Append response E-Tag HTTP header value

expires

fun ApplicationResponse.expires(value: LocalDateTime): Unit

Append response Expires HTTP header value

header

fun ApplicationResponse.header(name: String, value: String): Unit

Append HTTP response header with string value

fun ApplicationResponse.header(name: String, value: Int): Unit

Append HTTP response header with integer numeric value

fun ApplicationResponse.header(name: String, value: Long): Unit

Append HTTP response header with long integer numeric value

fun ApplicationResponse.header(name: String, date: Temporal): Unit

Append HTTP response header with temporal date (date, time and so on)

lastModified

fun ApplicationResponse.lastModified(dateTime: ZonedDateTime): Unit

Append response Last-Modified HTTP header value from dateTime

link

fun ApplicationResponse.link(header: LinkHeader): Unit

Append Link header to HTTP response

fun ApplicationResponse.link(uri: String, vararg rel: String): Unit

Append Link header to HTTP response with specified uri and rel