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

org.mattshoe.shoebox.devtools.server.ServerClient.kt Maven / Gradle / Ivy

package org.mattshoe.shoebox.devtools.server

import io.ktor.client.*
import io.ktor.client.plugins.*
import io.ktor.client.plugins.websocket.*
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.SupervisorJob

internal object ServerClient {
    private val ktorClient = HttpClient {
        install(WebSockets)
        install(HttpTimeout)
    }
    private val coroutineScope = CoroutineScope(SupervisorJob() + Dispatchers.IO)

    fun startSession(id: String): ClientDebugSession {
        return ClientDebugSessionImpl(
            id,
            ktorClient,
            coroutineScope
        )
    }
}






© 2015 - 2024 Weber Informatics LLC | Privacy Policy