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

jvmCommonMain.com.arkivanov.mvikotlin.timetravel.proto.internal.io.Utils.kt Maven / Gradle / Ivy

There is a newer version: 4.2.0
Show newest version
package com.arkivanov.mvikotlin.timetravel.proto.internal.io

import java.io.Closeable
import java.net.ServerSocket
import java.net.Socket

fun Any.closeSafe() {
    try {
        when (this) {
            is Closeable -> close()
            is Socket -> close()
            is ServerSocket -> close()
        }
    } catch (ignored: Exception) {
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy