All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.io.ktor.http.HttpMessage.kt Maven / Gradle / Ivy

package io.ktor.http

/**
 * A message either from the client or the server,
 * that has [headers] associated.
 */
interface HttpMessage {
    /**
     * Message [Headers]
     */
    val headers: Headers
}

/**
 * A builder message either for the client or the server,
 * that has a [headers] builder associated.
 */
interface HttpMessageBuilder {
    /**
     * MessageBuilder [HeadersBuilder]
     */
    val headers: HeadersBuilder
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy