URIFileContent

class URIFileContent(uri: URI, contentType: ContentType) : OutgoingContent.ReadChannelContent

Represents a content that is served from the specified uri

Constructors

Link copied to clipboard
fun URIFileContent(url: URL, contentType: ContentType = ContentType.defaultForFilePath(url.path))
Link copied to clipboard
fun URIFileContent(uri: URI, contentType: ContentType = ContentType.defaultForFilePath(uri.path))

Functions

Link copied to clipboard
open fun <T : Any> getProperty(key: AttributeKey<T>): T?

Gets an extension property for this content

Link copied to clipboard
open override fun readFrom(): ByteReadChannel

Provides ByteReadChannel for the content

open fun readFrom(range: LongRange): ByteReadChannel

Provides ByteReadChannel for the given range of the content

Link copied to clipboard
open fun <T : Any> setProperty(key: AttributeKey<T>, value: T?)

Sets an extension property for this content

Properties

Link copied to clipboard
open val contentLength: Long?

Specifies content length in bytes for this resource.

Link copied to clipboard
open override val contentType: ContentType

Specifies ContentType for this resource.

Link copied to clipboard
open val headers: Headers

Headers to set when sending this content

Link copied to clipboard
open val status: HttpStatusCode?

Status code to set when sending this content

Link copied to clipboard
val uri: URI

that is used as a source