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

commonMain.io.github.petretiandrea.socket.SocketInterface.kt Maven / Gradle / Ivy

There is a newer version: 1.1.2
Show newest version
package io.github.petretiandrea.socket

import io.github.petretiandrea.socket.stream.InputStream
import io.github.petretiandrea.socket.stream.OutputStream

@ExperimentalUnsignedTypes
interface SocketInterface {
    fun inputStream(): InputStream
    fun outputStream(): OutputStream
    fun isConnected(): Boolean
    suspend fun close()
}

expect fun createSocket(hostname: String, port: Int): SocketInterface




© 2015 - 2024 Weber Informatics LLC | Privacy Policy