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

commonMain.io.github.petretiandrea.socket.stream.StreamIO.kt Maven / Gradle / Ivy

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

import io.github.petretiandrea.socket.buffer.MultiplatformBuffer
import kotlin.time.Duration

interface InputStream {
    suspend fun read(buffer: MultiplatformBuffer): Int
    suspend fun read(buffer: MultiplatformBuffer, timeout: Duration): Int
    suspend fun close()
}

interface OutputStream {
    suspend fun send(buffer: MultiplatformBuffer): Boolean
    suspend fun close()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy