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

jvmMain.aws.smithy.kotlin.runtime.http.engine.DefaultHttpEngineJVM.kt Maven / Gradle / Ivy

There is a newer version: 1.4.1
Show newest version
/*
 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * SPDX-License-Identifier: Apache-2.0
 */

package aws.smithy.kotlin.runtime.http.engine

import aws.smithy.kotlin.runtime.http.engine.okhttp.OkHttpEngine

internal actual fun newDefaultHttpEngine(
    block: (HttpClientEngineConfig.Builder.() -> Unit)?,
): CloseableHttpClientEngine =
    if (block != null) {
        OkHttpEngine(block)
    } else {
        OkHttpEngine()
    }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy