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

jvmMain.aws.smithy.kotlin.runtime.crt.SdkDefaultIO.kt Maven / Gradle / Ivy

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

package aws.smithy.kotlin.runtime.crt

import aws.sdk.kotlin.crt.io.*
import aws.smithy.kotlin.runtime.InternalApi

// FIXME - this should default to number of processors
private const val DEFAULT_EVENT_LOOP_THREAD_COUNT: Int = 1

/**
 * Default (CRT) IO used by the SDK when not configured manually/directly
 */
@InternalApi
public object SdkDefaultIO {
    /**
     * The default event loop group to run IO on
     */
    public val EventLoop: EventLoopGroup by lazy {
        // TODO - can we register shutdown in appropriate runtimes (e.g. jvm: addShutdown, native: atexit(), etc) when/if these lazy block(s) run?
        EventLoopGroup(DEFAULT_EVENT_LOOP_THREAD_COUNT)
    }

    /**
     * The default host resolver to resolve DNS queries with
     */
    public val HostResolver: HostResolver by lazy {
        HostResolver(EventLoop)
    }

    /**
     * The default client bootstrap
     */
    public val ClientBootstrap: ClientBootstrap by lazy {
        ClientBootstrap(EventLoop, HostResolver)
    }

    /**
     * The default TLS context
     */
    public val TlsContext: TlsContext by lazy {
        TlsContext(TlsContextOptions.defaultClient())
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy