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

commonMain.dev.icerock.moko.socket.SocketOptions.kt Maven / Gradle / Ivy

/*
 * Copyright 2020 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
 */

package dev.icerock.moko.socket

data class SocketOptions(
    val queryParams: Map?,
    val transport: Transport = Transport.DEFAULT
) {
    enum class Transport {
        WEBSOCKET,
        POLLING,
        DEFAULT
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy