commonMain.aws.smithy.kotlin.runtime.http.content.ByteArrayContent.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http-jvm Show documentation
Show all versions of http-jvm Show documentation
HTTP core for Smithy clients and services generated by smithy-kotlin
The newest version!
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
package aws.smithy.kotlin.runtime.http.content
import aws.smithy.kotlin.runtime.http.HttpBody
/**
* Implementation of [HttpBody.Bytes] backed by a byte array
*/
internal class ByteArrayContent(private val bytes: ByteArray) : HttpBody.Bytes() {
override val contentLength: Long = bytes.size.toLong()
override fun bytes(): ByteArray = bytes
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy