jvmMain.aws.sdk.kotlin.runtime.crt.RequestUtilsJVM.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of crt-util Show documentation
Show all versions of crt-util Show documentation
Utilities for working with AWS CRT Kotlin
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
package aws.sdk.kotlin.runtime.crt
import aws.sdk.kotlin.crt.io.MutableBuffer
import aws.smithy.kotlin.runtime.io.SdkByteBuffer
import aws.smithy.kotlin.runtime.io.readAvailable
internal actual fun transferRequestBody(outgoing: SdkByteBuffer, dest: MutableBuffer) {
outgoing.readAvailable(dest.buffer)
}